aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins.lua
diff options
context:
space:
mode:
authorpml68 <contact@pml68.me>2024-10-09 18:49:49 +0200
committerpml68 <contact@pml68.me>2024-10-09 18:49:49 +0200
commit6d82be5917eceb362aedee0828c6083788d1a4d0 (patch)
treea24b4bed89c2dadd206b6c4c269fd2a7c71e91d2 /lua/pml68/plugins.lua
parentfeat: switch from emmet-ls to emmet-language-server (diff)
downloadnvim-6d82be5917eceb362aedee0828c6083788d1a4d0.tar.gz
feat: add eandrju/cellular-automaton.nvim
Diffstat (limited to 'lua/pml68/plugins.lua')
-rw-r--r--lua/pml68/plugins.lua11
1 files changed, 7 insertions, 4 deletions
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua
index 0cdeb16..894c315 100644
--- a/lua/pml68/plugins.lua
+++ b/lua/pml68/plugins.lua
@@ -23,7 +23,7 @@ local plugins = {
show_hidden = true,
natural_order = true,
is_always_hidden = function(name, _)
- return name == '.git'
+ return name == '.git' or name == "node_modules" or name == "target"
end
},
float = {
@@ -220,6 +220,10 @@ local plugins = {
version = "*",
config = true
},
+ {
+ "eandrju/cellular-automaton.nvim",
+ cmd = "CellularAutomaton",
+ },
--Formatting
{
"nvimdev/guard.nvim",
@@ -235,11 +239,10 @@ local plugins = {
cmd = "jq",
stdin = true
})
-
- require("guard").setup({
+ vim.g.guard_config = {
fmt_on_save = true,
lsp_as_default_formatter = true
- })
+ }
end
},
--PKL