1
Fork 0

nix editor configs

This commit is contained in:
Andy Killorin 2023-09-27 20:31:17 -05:00
parent c8eb1d1351
commit 64b9e34241
Signed by: ank
GPG key ID: B6241CA3B552BCA4
2 changed files with 11 additions and 0 deletions

View file

@ -3,6 +3,14 @@
"codeLens.enable": false, "codeLens.enable": false,
"languageserver": { "languageserver": {
"nix": {
"command": "rnix-lsp",
"filetypes": ["nix"]
},
"nix": {
"command": "pkgbuild-language-server",
"filetypes": ["PKGBUILD"]
},
"ccls": { "ccls": {
"command": "ccls", "command": "ccls",
"filetypes": [ "filetypes": [

3
.zshrc
View file

@ -23,6 +23,8 @@ export PATH=$PATH:$HOME/Documents/applications/bin
export PATH=$PATH:$HOME/.local/bin export PATH=$PATH:$HOME/.local/bin
export PATH=$PATH:$HOME/.nix-profile/bin
# from mac # from mac
PS1='%(?.%F{green}%?%f.%F{red}%?%f) %2~ %# ' PS1='%(?.%F{green}%?%f.%F{red}%?%f) %2~ %# '
RPROMPT='%D{%l%M.%S}' RPROMPT='%D{%l%M.%S}'
@ -47,3 +49,4 @@ export GTK_THEME=Adwaita:dark
export MOZ_ENABLE_WAYLAND=1 export MOZ_ENABLE_WAYLAND=1
alias of="onefetch --no-color-palette --no-art --no-title --disabled-fields=churn" alias of="onefetch --no-color-palette --no-art --no-title --disabled-fields=churn"
alias sws="static-web-server -p 8080 -d ."