Theme and options for nvim
This commit is contained in:
@@ -1,11 +1,19 @@
|
||||
local options = {
|
||||
termguicolors = true,
|
||||
number = true,
|
||||
tabstop = 4,
|
||||
softtabstop = 0,
|
||||
expandtab = true,
|
||||
shiftwidth = 4,
|
||||
smarttab = true,
|
||||
list = true,
|
||||
listchars = 'tab:» ,lead:•,trail:•',
|
||||
}
|
||||
|
||||
for k, v in pairs(options) do
|
||||
vim.opt[k] = v
|
||||
vim.opt[k] = v
|
||||
end
|
||||
|
||||
vim.diagnostic.config({
|
||||
signs = false,
|
||||
signs = false,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user