diff options
| author | triethyl <triethylammonium@pm.me> | 2025-07-22 12:50:08 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-07-22 12:50:08 -0400 |
| commit | 6fae3be80b67abfda8e475542625169dd6e77f31 (patch) | |
| tree | abfeafd6a3e3922394f0827149a3fcebdf8d2c42 /pkgs/custom-neovim/config/lua/options.lua | |
| parent | 50018aa0305bd2c5cf91431c128895fc0121d2fa (diff) | |
working on custom neovim
Diffstat (limited to 'pkgs/custom-neovim/config/lua/options.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/custom-neovim/config/lua/options.lua b/pkgs/custom-neovim/config/lua/options.lua index cd59941..f2ffcc9 100644 --- a/pkgs/custom-neovim/config/lua/options.lua +++ b/pkgs/custom-neovim/config/lua/options.lua @@ -7,7 +7,8 @@ vim.o.ruler = false -- don't show #,# in the commandline. vim.o.icm = 'split' vim.o.cia = 'abbr,kind,menu' vim.o.mouse = "" -vim.o.relativenumber = true -- set numbered lines +vim.o.number = true -- set absolute numbered lines +vim.o.relativenumber = true -- set relative 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 vim.o.clipboard = "unnamedplus" -- use system clipboard @@ -39,4 +40,3 @@ vim.o.foldexpr = "v:lua.vim.treesitter.foldexpr()" -- Set folder to treesitter. vim.o.foldlevel = 99 -- Don't fold initially. vim.o.foldnestmax = 4 -- Don't fold if more than 4 folds deep. vim.o.foldtext = "" -- Color text in folds. - |
