better
This commit is contained in:
21
nvim/lua/options.lua
Normal file
21
nvim/lua/options.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
require "nvchad.options"
|
||||
|
||||
-- add yours here!
|
||||
|
||||
local o = vim.o
|
||||
local opt = vim.opt
|
||||
|
||||
o.cursorlineopt ='both'
|
||||
o.expandtab = false
|
||||
o.smartindent = true
|
||||
o.smarttab = true
|
||||
o.tabstop = 4
|
||||
o.shiftwidth = 4
|
||||
o.softtabstop = 0
|
||||
o.relativenumber = true
|
||||
o.ignorecase = true
|
||||
o.smartcase = true
|
||||
o.mouse = "a"
|
||||
|
||||
opt.fillchars = { eob = " " }
|
||||
opt.whichwrap:append "<>[]hl"
|
||||
Reference in New Issue
Block a user