chore: 2025-01-05 update
This commit is contained in:
parent
73c3be994a
commit
ce520bded1
|
@ -4,6 +4,10 @@ theme = "onedark"
|
||||||
color-modes = true
|
color-modes = true
|
||||||
auto-save = true
|
auto-save = true
|
||||||
bufferline = "multiple"
|
bufferline = "multiple"
|
||||||
|
end-of-line-diagnostics = "hint"
|
||||||
|
|
||||||
|
[editor.inline-diagnostics]
|
||||||
|
cursor-line = "error"
|
||||||
|
|
||||||
[editor.indent-guides]
|
[editor.indent-guides]
|
||||||
render = true
|
render = true
|
||||||
|
|
3
.zshenv
3
.zshenv
|
@ -21,4 +21,7 @@ export PATH="$HOME/.yarn/bin:$PATH"
|
||||||
# Zigmod
|
# Zigmod
|
||||||
export PATH="$HOME/.zigmod/bin:$PATH"
|
export PATH="$HOME/.zigmod/bin:$PATH"
|
||||||
|
|
||||||
|
# Flutter
|
||||||
|
export PATH="/opt/flutter/bin:$PATH"
|
||||||
|
|
||||||
# Note: devkitPro handled by environment.d
|
# Note: devkitPro handled by environment.d
|
||||||
|
|
6
.zshrc
6
.zshrc
|
@ -118,3 +118,9 @@ source ~/.paodarc
|
||||||
export NVM_DIR="$HOME/.nvm"
|
export NVM_DIR="$HOME/.nvm"
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
|
|
||||||
|
## [Completion]
|
||||||
|
## Completion scripts setup. Remove the following line to uninstall
|
||||||
|
[[ -f /home/paoda/.dart-cli-completion/zsh-config.zsh ]] && . /home/paoda/.dart-cli-completion/zsh-config.zsh || true
|
||||||
|
## [/Completion]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue