File tree 5 files changed +32
-3
lines changed
config/astronvim/lua/user/plugins
5 files changed +32
-3
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "Version": "2.7.0",
3
+ "Verbose": false,
4
+ "Debug": false,
5
+ "IgnoreDefaults": false,
6
+ "SpacesAftertabs": false,
7
+ "NoColor": false,
8
+ "Exclude": [],
9
+ "AllowedContentTypes": [],
10
+ "PassedFiles": [],
11
+ "Disable": {
12
+ "EndOfLine": false,
13
+ "Indentation": false,
14
+ "InsertFinalNewline": false,
15
+ "TrimTrailingWhitespace": false,
16
+ "IndentSize": false,
17
+ "MaxLineLength": false
18
+ }
19
+ }
Original file line number Diff line number Diff line change
1
+ # This is shellcheck configuration file.
2
+
3
+ # Set whether or not to follow arbitrary file
4
+ # paths in source statements (since 0.8.0).
5
+ external-sources =true
6
+ includeAllWorkspaceSymbols =true
7
+
Original file line number Diff line number Diff line change 3
3
4
4
autoload -U colors zsh/terminfo
5
5
colors
6
+ setopt correct
6
7
7
8
# Defaults
8
9
export DOTFILES=" $HOME /.dotfiles"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ return { -- Add the community repository of plugin specific
25
25
},
26
26
{ import = " astrocommunity.code-runner.overseer-nvim" },
27
27
--- { import = "astrocommunity.diagnostics.lsp_lines-nvim" },
28
- --- { import = "astrocommunity.diagnostics.trouble-nvim" },
28
+ { import = " astrocommunity.diagnostics.trouble-nvim" },
29
29
{ import = " astrocommunity.editing-support.refactoring-nvim" },
30
30
{ import = " astrocommunity.editing-support.neogen" },
31
31
{ import = " astrocommunity.editing-support.nvim-regexplainer" },
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ function section_install
61
61
$0 install z
62
62
;;
63
63
antigen)
64
- curl -L git.io/antigen > " $DOTFILES /local/bin/antigen.zsh" \
64
+ curl -sSfL git.io/antigen -o " $DOTFILES /local/bin/antigen.zsh" \
65
65
&& msg_yay " New antigen installed!"
66
66
;;
67
67
composer)
@@ -92,7 +92,9 @@ function section_install
92
92
&& msg_yay " imagick installed!"
93
93
;;
94
94
starship)
95
- curl -sS https://starship.rs/install.sh | sh -s -- --bin-dir ~ /.local/bin \
95
+ curl -sS https://starship.rs/install.sh | sh -s -- \
96
+ --bin-dir ~ /.local/bin \
97
+ --yes \
96
98
&& msg_yay " starship installed!"
97
99
;;
98
100
macos)
You can’t perform that action at this time.
0 commit comments