aboutsummaryrefslogtreecommitdiff
path: root/lua/config/plugins.lua
diff options
context:
space:
mode:
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]])