diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-24 11:51:30 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-24 11:51:30 -0400 |
| commit | 3a1bb7c16c3b4efed6ca281017dcc94c48be5f2d (patch) | |
| tree | 93c97a6c9030d108be51941a04dda7e3082ba1ed /pkgs/custom-neovim/config/lua/options.lua | |
| parent | 570bdd8a41786d1531de7b5116a6dbc0a78c61b3 (diff) | |
neovim: finished statusline and more
Diffstat (limited to 'pkgs/custom-neovim/config/lua/options.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/options.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/options.lua b/pkgs/custom-neovim/config/lua/options.lua index 6840085..67c4469 100644 --- a/pkgs/custom-neovim/config/lua/options.lua +++ b/pkgs/custom-neovim/config/lua/options.lua @@ -12,6 +12,9 @@ vim.o.number = true -- set absolute numbered lines vim.o.scrolloff = 4 -- minimal number of screen lines to keep above and below the cursor vim.o.signcolumn = "yes" -- always show the sign column, otherwise it would shift the text each time +-- Finding +vim.o.gdefault = true -- Replace globally by default + -- Folding vim.o.foldmethod = "expr" vim.o.foldexpr = "v:lua.vim.treesitter.foldexpr()" -- Set folder to treesitter. |
