This commit is contained in:
2026-02-06 13:38:25 -06:00
parent e1a0c21a6e
commit 4126124208
8 changed files with 71 additions and 15 deletions

15
lua/plugins/format.lua Normal file
View File

@@ -0,0 +1,15 @@
return {
{
'windwp/nvim-autopairs',
event = "InsertEnter",
config = true
},
{
"folke/ts-comments.nvim",
event = "VeryLazy",
opts = {},
},
{
"hrsh7th/nvim-cmp",
}
}

View File

@@ -1,6 +1,11 @@
return {
{
"nvim-tree/nvim-tree.lua",
cmd = { "NvimTreeToggle", "NvimTreeFocus" },
}
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup {}
end,
}

13
lua/plugins/theme.lua Normal file
View File

@@ -0,0 +1,13 @@
return {
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
},
{
'akinsho/bufferline.nvim',
version = "*",
dependencies = 'nvim-tree/nvim-web-devicons'
}
}

15
lua/plugins/which.lua Normal file
View File

@@ -0,0 +1,15 @@
return {
{
"folke/which-key.nvim",
event = "VeryLazy",
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}
}