nvim
This commit is contained in:
parent
605d35fe2d
commit
07c9822c5a
1 changed files with 14 additions and 18 deletions
|
@ -23,7 +23,7 @@ plugins = {
|
|||
{
|
||||
'windwp/nvim-ts-autotag',
|
||||
config = function ()
|
||||
require('nvim-ts-autotag').setup()
|
||||
require('nvim-ts-autotag').setup()
|
||||
end
|
||||
},
|
||||
{
|
||||
|
@ -111,6 +111,15 @@ plugins = {
|
|||
config = function() require('galaxyline.themes.eviline') end,
|
||||
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",
|
||||
build = ":TSUpdate",
|
||||
|
@ -121,25 +130,9 @@ plugins = {
|
|||
sync_install = false,
|
||||
highlight = { enable = true },
|
||||
indent = { enable = true },
|
||||
})
|
||||
})
|
||||
end
|
||||
},
|
||||
{
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
config = function()
|
||||
configs = require('ibl').setup({
|
||||
indent = {
|
||||
char = "│"
|
||||
},
|
||||
scope = {
|
||||
show_start = false,
|
||||
}
|
||||
})
|
||||
end
|
||||
},
|
||||
{
|
||||
|
||||
},
|
||||
}
|
||||
|
||||
require("lazy").setup(plugins)
|
||||
|
@ -151,4 +144,7 @@ end
|
|||
vim.opt.smarttab = true
|
||||
vim.opt.expandtab = true
|
||||
vim.opt.shiftwidth = 2
|
||||
vim.opt.cmdheight = 0
|
||||
vim.opt.guifont = "victor mono:h11"
|
||||
vim.opt.termguicolors = true
|
||||
vim.wo.number = true
|
||||
|
|
Loading…
Reference in a new issue