This commit is contained in:
ramintheredmn 2024-03-25 01:07:11 +03:30
parent 92c4b967fd
commit 08ab0e95e6
2 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,6 @@
return {
'windwp/nvim-ts-autotag',
config = function()
require('nvim-ts-autotag').setup()
end,
}