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
commit543fc733da074751e1750603df6931089efab465 (patch)
treeb19fa17f08191283f8d3e23890b0b7fcc0154c6a /store/config/nvim/lua/plugins.lua
parent4fb85617dfad5e343e56e22ba49ab5b4a6f1d055 (diff)
downloadcrupest-543fc733da074751e1750603df6931089efab465.tar.gz
crupest-543fc733da074751e1750603df6931089efab465.tar.bz2
crupest-543fc733da074751e1750603df6931089efab465.zip
config(nvim): add conform.nvim for js/ts/md format.dev
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' }
}