diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2024-06-24 16:45:18 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2024-06-24 16:45:18 +0800 |
commit | 11863aa710ab0626eb76648d101854a481664a34 (patch) | |
tree | ed7d8331ceafbf8c5cc14304d0cd12e031eb2593 /vim/nvim/lua/options.lua | |
parent | 76c665e2b3c797c1b77e90337f5db1e77bf60a23 (diff) |
Update
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 | ||