Include nvim-tree and set options on startup

This commit is contained in:
Ajay Singh 2023-08-19 05:32:30 -04:00
parent 233444ac01
commit 1bed2425b1

View File

@ -60,6 +60,12 @@ end
vim.opt.rtp:prepend(lazypath)
-- nvim-tree setup
-- set ruler
vim.cmd('set colorcolumn=80')
-- set hybrid relative line numbers
vim.cmd('set nu rnu')
-- disable netrw at the very start of your init.lua (strongly advised)
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
@ -197,7 +203,12 @@ require('lazy').setup({
},
},
},
{
'nvim-tree/nvim-tree.lua',
requires = {
'nvim-tree/nvim-web-devicons', -- optional
},
},
{
-- Highlight, edit, and navigate code
'nvim-treesitter/nvim-treesitter',