aboutsummaryrefslogtreecommitdiff
path: root/store/home/config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-02-28 23:13:39 +0800
committerYuqian Yang <crupest@crupest.life>2025-02-28 23:13:39 +0800
commitdc1f0c4c0096013799416664894c5194dc7e1f52 (patch)
tree2f5d235f778cd720f4c39ec3e56b77ba6d99f375 /store/home/config/nvim/lua/plugins.lua
parent7299d424d90b1effb6db69e3476ddd5af72eeba4 (diff)
downloadcrupest-dc1f0c4c0096013799416664894c5194dc7e1f52.tar.gz
crupest-dc1f0c4c0096013799416664894c5194dc7e1f52.tar.bz2
crupest-dc1f0c4c0096013799416664894c5194dc7e1f52.zip
chore(store): move everything to store.
Diffstat (limited to 'store/home/config/nvim/lua/plugins.lua')
-rw-r--r--store/home/config/nvim/lua/plugins.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/store/home/config/nvim/lua/plugins.lua b/store/home/config/nvim/lua/plugins.lua
new file mode 100644
index 0000000..b689559
--- /dev/null
+++ b/store/home/config/nvim/lua/plugins.lua
@@ -0,0 +1,30 @@
+-- spellchecker: disable
+return {
+ { "catppuccin/nvim", name = "catppuccin", priority = 1000 },
+ "neovim/nvim-lspconfig",
+ "L3MON4D3/LuaSnip",
+ "hrsh7th/nvim-cmp",
+ "hrsh7th/cmp-nvim-lsp",
+ "hrsh7th/cmp-buffer",
+ "hrsh7th/cmp-path",
+ "hrsh7th/cmp-cmdline",
+ "saadparwaiz1/cmp_luasnip",
+ {
+ "nvim-tree/nvim-tree.lua",
+ lazy = false,
+ dependencies = {
+ "nvim-tree/nvim-web-devicons",
+ },
+ },
+ {
+ "nvim-lualine/lualine.nvim",
+ dependencies = { 'nvim-tree/nvim-web-devicons' }
+ },
+ {
+ "nvim-telescope/telescope.nvim",
+ dependencies = { 'nvim-lua/plenary.nvim' }
+ },
+ "windwp/nvim-autopairs",
+ "mfussenegger/nvim-lint",
+ "lewis6991/gitsigns.nvim",
+}