diff options
author | sefidel <contact@sefidel.net> | 2022-10-07 07:02:54 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-10-07 07:02:54 +0900 |
commit | 1b732f9be1e2952a45758ece0f63fa7111d27b9b (patch) | |
tree | ef694beec630d4e0827a41b4a83aff5af4406598 /fnl/nvrc | |
parent | 83c01bdcf35cd95df2d0eb12a651d300cae71140 (diff) | |
download | nvimrc-1b732f9be1e2952a45758ece0f63fa7111d27b9b.tar.gz nvimrc-1b732f9be1e2952a45758ece0f63fa7111d27b9b.zip |
chore: replace stabilize with native option
Diffstat (limited to 'fnl/nvrc')
-rw-r--r-- | fnl/nvrc/options.fnl | 1 | ||||
-rw-r--r-- | fnl/nvrc/pack.fnl | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/fnl/nvrc/options.fnl b/fnl/nvrc/options.fnl index 13e1d1e..4fb5099 100644 --- a/fnl/nvrc/options.fnl +++ b/fnl/nvrc/options.fnl @@ -13,6 +13,7 @@ (set! scrolloff 3) (set! splitbelow) (set! splitright) +(set! splitkeep :screen) (set! termguicolors) (set! lazyredraw) diff --git a/fnl/nvrc/pack.fnl b/fnl/nvrc/pack.fnl index 1adf1f2..da5a392 100644 --- a/fnl/nvrc/pack.fnl +++ b/fnl/nvrc/pack.fnl @@ -10,7 +10,6 @@ (pack :nvim-treesitter/nvim-treesitter-textobjects {:after :nvim-treesitter})]}) (pack! :antoinemadec/FixCursorHold.nvim) -(pack! :luukvbaal/stabilize.nvim {:init :stabilize}) (pack! :justinmk/vim-dirvish) (pack! :neovim/nvim-lspconfig {:req :lspconfig |