aboutsummaryrefslogtreecommitdiff
path: root/lua/config/plugins.lua
diff options
context:
space:
mode:
authorTrey Bastian <hello@treybastian.com>2026-02-19 11:27:04 +0000
committerTrey Bastian <hello@treybastian.com>2026-02-19 11:27:04 +0000
commit7f72818a2a8b79dd0f88157bfff430a2c08b0242 (patch)
treefa8ad2ad1255aa3b3a73f400fef0f4d8c295abbf /lua/config/plugins.lua
parent6edc72539468ed40101c56288ba6a4c10c85d382 (diff)
streamlined lsp formatter linter and debugger setup
Diffstat (limited to 'lua/config/plugins.lua')
-rw-r--r--lua/config/plugins.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/lua/config/plugins.lua b/lua/config/plugins.lua
index 2d62c65..784150a 100644
--- a/lua/config/plugins.lua
+++ b/lua/config/plugins.lua
@@ -1,4 +1,4 @@
--- plugins that require no configuration
+-- plugins that require little no configuration
vim.pack.add({
"https://github.com/tpope/vim-eunuch",
"https://github.com/jessarcher/vim-heritage",
@@ -9,9 +9,17 @@ vim.pack.add({
"https://github.com/MunifTanjim/nui.nvim",
"https://github.com/nvim-neotest/nvim-nio",
"https://github.com/nvim-lua/plenary.nvim",
+ "https://github.com/j-hui/fidget.nvim",
+ "https://github.com/neovim/nvim-lspconfig",
+ "https://github.com/rafamadriz/friendly-snippets",
+ { src = "https://github.com/saghen/blink.cmp", version = vim.version.range("*") },
})
require("nvim-autopairs").setup()
require("nvim-surround").setup()
+require("fidget").setup()
+require("blink.cmp").setup({
+ signature = { enabled = true },
+})
vim.cmd([[colorscheme gruvbox]])