This commit is contained in:
Ale 2024-06-23 19:33:59 +02:00
parent ac7a6d8926
commit 11fc25f9c7
8 changed files with 55 additions and 7 deletions

View file

@ -7,12 +7,6 @@ return {
init = function () vim.g.barbar_auto_setup = false end,
opts = {
animation = true,
auto_hide = 0,
preset = 'slanted',
sidebar_filetypes = {
['neo-tree'] = true
}
auto_hide = 0
}
}

View file

@ -0,0 +1,14 @@
return {
{
"folke/lazydev.nvim",
ft = "lua", -- only load on lua files
opts = {
library = {
-- See the configuration section for more details
-- Load luvit types when the `vim.uv` word is found
{ path = "luvit-meta/library", words = { "vim%.uv" } },
},
},
},
{ "Bilal2453/luvit-meta", lazy = true }, -- optional `vim.uv` typings
}

View file

@ -12,6 +12,15 @@ return {
enable_git_status = true,
enable_diagnostics = true,
sources = {
"filesystem",
"git_status",
},
source_selector = {
winbar = true
},
filesystem = {
follow_current_file = {
enabled = true

View file

@ -0,0 +1,14 @@
return {
"NeogitOrg/neogit",
dependencies = {
"nvim-lua/plenary.nvim", -- required
"sindrets/diffview.nvim", -- optional - Diff integration
"nvim-telescope/telescope.nvim", -- optional
},
config = function()
require('neogit').setup {
kind = "split"
}
end
}

View file

@ -23,6 +23,7 @@ return {
sources = cmp.config.sources({
{name = 'nvim_lsp'},
{name = 'luasnip'},
{name = 'lazydev'},
{name = 'buffer'}
}),
})
@ -31,6 +32,7 @@ return {
{'hrsh7th/cmp-nvim-lsp'},
{'saadparwaiz1/cmp_luasnip'},
{'rafamadriz/friendly-snippets'},
{'folke/lazydev.nvim'},
{'L3MON4D3/LuaSnip'}
}
}

View file

@ -0,0 +1,7 @@
return {
'wansmer/symbol-usage.nvim',
event = 'LspAttach',
config = function()
require('symbol-usage').setup()
end
}