pluh 🗣
This commit is contained in:
parent
fa30c4d826
commit
92f097cb82
8 changed files with 127 additions and 132 deletions
5
home/codium/.config/VSCodium/User/settings.json
Normal file
5
home/codium/.config/VSCodium/User/settings.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"workbench.colorTheme": "Orbi Blue",
|
||||
"files.insertFinalNewline": true,
|
||||
"nix.enableLanguageServer": true
|
||||
}
|
|
@ -12,10 +12,10 @@ if status is-interactive
|
|||
set fish_cursor_replace_one underscore blink
|
||||
set fish_cursor_visual block
|
||||
|
||||
if set -q XDG_CONFIG_HOME
|
||||
set -x RIPGREP_CONFIG_PATH $XDG_CONFIG_HOME/ripgrep/ripgreprc
|
||||
else
|
||||
set -x RIPGREP_CONFIG_PATH ~/.config/ripgrep/ripgreprc
|
||||
begin
|
||||
set --local parent $XDG_CONFIG_HOME
|
||||
test -z $parent && set parent ~/.config
|
||||
set --export RIPGREP_CONFIG_PATH $parent/ripgrep/ripgreprc
|
||||
end
|
||||
|
||||
if type -q direnv
|
||||
|
@ -27,9 +27,13 @@ if status is-interactive
|
|||
end
|
||||
|
||||
if type -q nix
|
||||
fish_add_path ~/.local/state/nix/profile/bin
|
||||
set --local parent $XDG_STATE_HOME
|
||||
test -z $parent && set parent ~/.local/state
|
||||
fish_add_path $parent/nix/profile/bin
|
||||
end
|
||||
|
||||
fish_add_path ~/.local/bin
|
||||
|
||||
abbr --add l ls
|
||||
abbr --add lsa ls -a
|
||||
abbr --add la ls -a
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
auto-optimise-store = true
|
||||
experimental-features = nix-command flakes
|
||||
use-xdg-base-directories = true
|
||||
substituters = https://cache.nixos.org https://fossar.cachix.org
|
||||
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= fossar.cachix.org-1:Zv6FuqIboeHPWQS7ysLCJ7UT7xExb4OE8c4LyGb5AsE=
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue