adding additional plugins
This commit is contained in:
parent
89f9e7b130
commit
3b2c65de0d
|
@ -1,3 +1,15 @@
|
|||
local opt = vim.opt
|
||||
|
||||
-- line numbers
|
||||
opt.relativenumber = true
|
||||
opt.number = true
|
||||
|
||||
-- tabs & indentation
|
||||
opt.tabstop = 2
|
||||
opt.shiftwidth = 2
|
||||
opt.expandtab = true
|
||||
opt.autoindent = true
|
||||
|
||||
-- [[ Setting options ]]
|
||||
-- See `:help vim.o`
|
||||
|
||||
|
|
|
@ -80,5 +80,7 @@ return {
|
|||
},
|
||||
}
|
||||
end, 0)
|
||||
|
||||
|
||||
end
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue