Refactoring

This commit is contained in:
2025-08-31 14:56:56 +02:00
parent 7f7608bd46
commit 8db10741fe
8 changed files with 55 additions and 36 deletions

View File

@@ -8,12 +8,14 @@ vim.o.mouse = "";
-- Turn on undofile
vim.o.udf = true;
vim.opt.undolevels = 10000 -- Default is 1000
vim.opt.undoreload = 10000
-- Enable more colors
vim.opt.termguicolors = true
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
--vim.g.loaded_netrw = 1
--vim.g.loaded_netrwPlugin = 1
vim.opt.signcolumn = "yes"
@@ -22,7 +24,3 @@ vim.opt.foldmethod = "expr"
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
vim.opt.foldlevelstart = 99 -- open all folds by default
vim.opt.fillchars = "fold:╌"
-- 3. Persist folds using mkview/loadview