File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,5 @@ This plugin pack does the following:
7
7
- Adds ` shfmt ` formatter
8
8
- Adds ` shellcheck ` linter
9
9
- Adds ` bash ` debugger
10
+
11
+ > :warning : Also attaches to zsh files with experimental support.
Original file line number Diff line number Diff line change 1
1
return {
2
+ {
3
+ " AstroNvim/astrolsp" ,
4
+ opts = {
5
+ config = {
6
+ bashls = {
7
+ filetypes = { " sh" , " bash" , " zsh" },
8
+ },
9
+ },
10
+ },
11
+ },
2
12
{
3
13
" nvim-treesitter/nvim-treesitter" ,
4
14
optional = true ,
@@ -46,6 +56,7 @@ return {
46
56
opts = {
47
57
formatters_by_ft = {
48
58
sh = { " shfmt" , " shellcheck" },
59
+ zsh = { " shfmt" , " shellcheck" },
49
60
},
50
61
},
51
62
},
@@ -55,6 +66,7 @@ return {
55
66
opts = {
56
67
linters_by_ft = {
57
68
sh = { " shellcheck" },
69
+ zsh = { " shellcheck" },
58
70
},
59
71
},
60
72
},
You can’t perform that action at this time.
0 commit comments