aboutsummaryrefslogtreecommitdiff
path: root/store/config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-06-08 15:07:43 +0800
committerYuqian Yang <crupest@crupest.life>2025-06-08 15:14:37 +0800
commitfa62ea0367faea62904c0085c029cdbb18cf0857 (patch)
treefcdf61ead5752e69cadecfbc593e474f9b93bbfa /store/config/nvim/lua/plugins.lua
parent5a7ff186e3c25e543a1a60d3af3a7807306d19d7 (diff)
downloadcrupest-fa62ea0367faea62904c0085c029cdbb18cf0857.tar.gz
crupest-fa62ea0367faea62904c0085c029cdbb18cf0857.tar.bz2
crupest-fa62ea0367faea62904c0085c029cdbb18cf0857.zip
config(nvim): add conform.nvim for js/ts/md format.
Diffstat (limited to 'store/config/nvim/lua/plugins.lua')
-rw-r--r--store/config/nvim/lua/plugins.lua25
1 files changed, 16 insertions, 9 deletions
diff --git a/store/config/nvim/lua/plugins.lua b/store/config/nvim/lua/plugins.lua
index 4f61660..8458575 100644
--- a/store/config/nvim/lua/plugins.lua
+++ b/store/config/nvim/lua/plugins.lua
@@ -1,11 +1,13 @@
-- spellchecker: disable
return {
- { "catppuccin/nvim", name = "catppuccin", priority = 1000 },
- "neovim/nvim-lspconfig",
- "hrsh7th/nvim-cmp",
- "hrsh7th/cmp-nvim-lsp",
- "hrsh7th/cmp-buffer",
- "hrsh7th/cmp-path",
+ {
+ "catppuccin/nvim",
+ name = "catppuccin",
+ priority = 1000
+ },
+ {
+ "neovim/nvim-lspconfig"
+ },
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate"
@@ -28,7 +30,12 @@ return {
"nvim-telescope/telescope.nvim",
dependencies = { 'nvim-lua/plenary.nvim' }
},
- "windwp/nvim-autopairs",
- "mfussenegger/nvim-lint",
- "lewis6991/gitsigns.nvim",
+ { "lewis6991/gitsigns.nvim" },
+ { "hrsh7th/nvim-cmp" },
+ { "hrsh7th/cmp-nvim-lsp" },
+ { "hrsh7th/cmp-buffer" },
+ { "hrsh7th/cmp-path" },
+ { "windwp/nvim-autopairs" },
+ { "mfussenegger/nvim-lint" },
+ { 'stevearc/conform.nvim' }
}