This commit is contained in:
Ale 2023-11-18 17:27:19 +01:00
parent 605d35fe2d
commit 07c9822c5a

View file

@ -23,7 +23,7 @@ plugins = {
{ {
'windwp/nvim-ts-autotag', 'windwp/nvim-ts-autotag',
config = function () config = function ()
require('nvim-ts-autotag').setup() require('nvim-ts-autotag').setup()
end end
}, },
{ {
@ -111,6 +111,15 @@ plugins = {
config = function() require('galaxyline.themes.eviline') end, config = function() require('galaxyline.themes.eviline') end,
dependencies = {{'nvim-tree/nvim-web-devicons'}}, dependencies = {{'nvim-tree/nvim-web-devicons'}},
}, },
{
'nvim-neo-tree/neo-tree.nvim',
branch = "v3.x",
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-tree/nvim-web-devicons',
'MunifTanjim/nui.nvim'
}
},
{ {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
build = ":TSUpdate", build = ":TSUpdate",
@ -121,25 +130,9 @@ plugins = {
sync_install = false, sync_install = false,
highlight = { enable = true }, highlight = { enable = true },
indent = { enable = true }, indent = { enable = true },
}) })
end end
}, },
{
"lukas-reineke/indent-blankline.nvim",
config = function()
configs = require('ibl').setup({
indent = {
char = ""
},
scope = {
show_start = false,
}
})
end
},
{
},
} }
require("lazy").setup(plugins) require("lazy").setup(plugins)
@ -151,4 +144,7 @@ end
vim.opt.smarttab = true vim.opt.smarttab = true
vim.opt.expandtab = true vim.opt.expandtab = true
vim.opt.shiftwidth = 2 vim.opt.shiftwidth = 2
vim.opt.cmdheight = 0
vim.opt.guifont = "victor mono:h11" vim.opt.guifont = "victor mono:h11"
vim.opt.termguicolors = true
vim.wo.number = true