diff options
Diffstat (limited to 'vim/nvim/lua/options.lua')
-rw-r--r-- | vim/nvim/lua/options.lua | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/vim/nvim/lua/options.lua b/vim/nvim/lua/options.lua deleted file mode 100644 index f9e6e7e..0000000 --- a/vim/nvim/lua/options.lua +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | require "nvchad.options" | ||
2 | |||
3 | -- add yours here! | ||
4 | |||
5 | local o = vim.o | ||
6 | |||
7 | -- To enable cursorline! | ||
8 | o.cursorlineopt ='both' | ||
9 | |||
10 | -- Let cursor be line in insert mode | ||
11 | o.guicursor = "n-v-c-sm:block,i-ci-ve:ver25,r-cr-o:hor20" | ||
12 | |||
13 | -- Enable break indent | ||
14 | o.breakindent = true | ||
15 | |||
16 | -- To have a better completion experience | ||
17 | o.completeopt = 'menuone,noselect' | ||
18 | |||
19 | -- NOTE: You should make sure your terminal supports this | ||
20 | o.termguicolors = true | ||