Skip to content

Commit c3aa6b7

Browse files
committed
Chore: Fixes, repo dotfiles
1 parent 66739fa commit c3aa6b7

File tree

5 files changed

+32
-3
lines changed

5 files changed

+32
-3
lines changed

.ecrc

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
}

.shellcheckrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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+

base/zshrc

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
autoload -U colors zsh/terminfo
55
colors
6+
setopt correct
67

78
# Defaults
89
export DOTFILES="$HOME/.dotfiles"

config/astronvim/lua/user/plugins/community.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ return { -- Add the community repository of plugin specific
2525
},
2626
{ import = "astrocommunity.code-runner.overseer-nvim" },
2727
--- { import = "astrocommunity.diagnostics.lsp_lines-nvim" },
28-
--- { import = "astrocommunity.diagnostics.trouble-nvim" },
28+
{ import = "astrocommunity.diagnostics.trouble-nvim" },
2929
{ import = "astrocommunity.editing-support.refactoring-nvim" },
3030
{ import = "astrocommunity.editing-support.neogen" },
3131
{ import = "astrocommunity.editing-support.nvim-regexplainer" },

local/bin/dfm

+4-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function section_install
6161
$0 install z
6262
;;
6363
antigen)
64-
curl -L git.io/antigen > "$DOTFILES/local/bin/antigen.zsh" \
64+
curl -sSfL git.io/antigen -o "$DOTFILES/local/bin/antigen.zsh" \
6565
&& msg_yay "New antigen installed!"
6666
;;
6767
composer)
@@ -92,7 +92,9 @@ function section_install
9292
&& msg_yay "imagick installed!"
9393
;;
9494
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 \
9698
&& msg_yay "starship installed!"
9799
;;
98100
macos)

0 commit comments

Comments
 (0)