codium
This commit is contained in:
parent
92c4b967fd
commit
08ab0e95e6
2
init.lua
2
init.lua
|
@ -109,6 +109,8 @@ vim.g.have_nerd_font = true
|
|||
-- Make line numbers default
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.number = true
|
||||
vim.opt.encoding = 'utf-8'
|
||||
vim.opt.arabicshape = true
|
||||
-- You can also add relative line numbers, to help with jumping.
|
||||
-- Experiment for yourself to see if you like it!
|
||||
-- vim.opt.relativenumber = true
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
'windwp/nvim-ts-autotag',
|
||||
config = function()
|
||||
require('nvim-ts-autotag').setup()
|
||||
end,
|
||||
}
|
Loading…
Reference in New Issue