aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/nvim/lua/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'vim/nvim/lua/options.lua')
-rw-r--r--vim/nvim/lua/options.lua20
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 @@
1require "nvchad.options"
2
3-- add yours here!
4
5local o = vim.o
6
7-- To enable cursorline!
8o.cursorlineopt ='both'
9
10-- Let cursor be line in insert mode
11o.guicursor = "n-v-c-sm:block,i-ci-ve:ver25,r-cr-o:hor20"
12
13-- Enable break indent
14o.breakindent = true
15
16-- To have a better completion experience
17o.completeopt = 'menuone,noselect'
18
19-- NOTE: You should make sure your terminal supports this
20o.termguicolors = true