diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-05 18:55:04 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-05 18:55:04 -0400 |
| commit | d11d840d3e3df66ce3f778d185306a48ab5fdd83 (patch) | |
| tree | 66fbdbcf516d0cafabfa7159e52220068aa73542 /pkgs/custom-neovim/config/lua/options.lua | |
| parent | 799aa93ad965ff3d3fbd1bf95cdc0fc6eccb2b90 (diff) | |
neovim: ton of stuff (sorry)
Diffstat (limited to 'pkgs/custom-neovim/config/lua/options.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/options.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/options.lua b/pkgs/custom-neovim/config/lua/options.lua index 8fccdeb..5444180 100644 --- a/pkgs/custom-neovim/config/lua/options.lua +++ b/pkgs/custom-neovim/config/lua/options.lua @@ -14,6 +14,10 @@ vim.o.signcolumn = "yes" -- always show the sign column, otherwise it would shif vim.o.clipboard = "unnamedplus" -- use system clipboard vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions,globals" +-- Split Behavior +vim.o.splitright = true +vim.o.splitbelow = true + -- Indention local indent = 2 vim.o.autoindent = true -- auto indentation |
