diff --git a/.ecrc b/.ecrc new file mode 100644 index 0000000..58b3718 --- /dev/null +++ b/.ecrc @@ -0,0 +1,19 @@ +{ + "Version": "2.7.0", + "Verbose": false, + "Debug": false, + "IgnoreDefaults": false, + "SpacesAftertabs": false, + "NoColor": false, + "Exclude": [], + "AllowedContentTypes": [], + "PassedFiles": [], + "Disable": { + "EndOfLine": false, + "Indentation": false, + "InsertFinalNewline": false, + "TrimTrailingWhitespace": false, + "IndentSize": false, + "MaxLineLength": false + } +} diff --git a/.shellcheckrc b/.shellcheckrc new file mode 100644 index 0000000..7898c5b --- /dev/null +++ b/.shellcheckrc @@ -0,0 +1,7 @@ +# This is shellcheck configuration file. + +# Set whether or not to follow arbitrary file +# paths in source statements (since 0.8.0). +external-sources=true +includeAllWorkspaceSymbols=true + diff --git a/base/zshrc b/base/zshrc index 5a8d238..4e8de7a 100644 --- a/base/zshrc +++ b/base/zshrc @@ -3,6 +3,7 @@ autoload -U colors zsh/terminfo colors +setopt correct # Defaults export DOTFILES="$HOME/.dotfiles" diff --git a/config/astronvim/lua/user/plugins/community.lua b/config/astronvim/lua/user/plugins/community.lua index 04d8a12..d126dd6 100644 --- a/config/astronvim/lua/user/plugins/community.lua +++ b/config/astronvim/lua/user/plugins/community.lua @@ -25,7 +25,7 @@ return { -- Add the community repository of plugin specific }, { import = "astrocommunity.code-runner.overseer-nvim" }, --- { import = "astrocommunity.diagnostics.lsp_lines-nvim" }, - --- { import = "astrocommunity.diagnostics.trouble-nvim" }, + { import = "astrocommunity.diagnostics.trouble-nvim" }, { import = "astrocommunity.editing-support.refactoring-nvim" }, { import = "astrocommunity.editing-support.neogen" }, { import = "astrocommunity.editing-support.nvim-regexplainer" }, diff --git a/local/bin/dfm b/local/bin/dfm index 462684a..3c03385 100755 --- a/local/bin/dfm +++ b/local/bin/dfm @@ -61,7 +61,7 @@ function section_install $0 install z ;; antigen) - curl -L git.io/antigen > "$DOTFILES/local/bin/antigen.zsh" \ + curl -sSfL git.io/antigen -o "$DOTFILES/local/bin/antigen.zsh" \ && msg_yay "New antigen installed!" ;; composer) @@ -92,7 +92,9 @@ function section_install && msg_yay "imagick installed!" ;; starship) - curl -sS https://starship.rs/install.sh | sh -s -- --bin-dir ~/.local/bin \ + curl -sS https://starship.rs/install.sh | sh -s -- \ + --bin-dir ~/.local/bin \ + --yes \ && msg_yay "starship installed!" ;; macos)