blob: 64b95a1b9e8c7bed43dc3547e2f71c62c17fcae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
require "nvchad.options"
-- add yours here!
local o = vim.o
o.clipboard = ''
-- 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
o.whichwrap = "b,s"
o.tabstop = 8
|