aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/lua/options.lua
blob: f9e6e7eeb43fb2a7271ea30587ada1f1606ae38e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require "nvchad.options"

-- add yours here!

local o = vim.o

-- To enable cursorline!
o.cursorlineopt ='both'

-- Let cursor be line in insert mode
o.guicursor = "n-v-c-sm:block,i-ci-ve:ver25,r-cr-o:hor20"

-- Enable break indent
o.breakindent = true

-- To have a better completion experience
o.completeopt = 'menuone,noselect'

-- NOTE: You should make sure your terminal supports this
o.termguicolors = true