1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-12-02 23:33:05 +00:00

Compare commits

...

5 commits

Author SHA1 Message Date
ef6c5083a7 Add rustup self update and use beta 2024-04-26 00:37:43 +02:00
9fa1ca6a4e Bye Haskell :P 2024-04-26 00:37:09 +02:00
ecab9e5593 Fix undo commit 2024-04-26 00:36:38 +02:00
a326fd9bb3 Add the alias tb 2024-04-26 00:36:24 +02:00
69ef2bba39 Update dprint plugins 2024-04-26 00:35:53 +02:00
5 changed files with 13 additions and 14 deletions

View file

@ -10,8 +10,8 @@
"**/*-lock.json"
],
"plugins": [
"https://plugins.dprint.dev/json-0.19.1.wasm",
"https://plugins.dprint.dev/markdown-0.16.3.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm"
"https://plugins.dprint.dev/json-0.19.2.wasm",
"https://plugins.dprint.dev/markdown-0.16.4.wasm",
"https://plugins.dprint.dev/toml-0.6.1.wasm"
]
}

View file

@ -13,7 +13,7 @@ if status is-interactive
# Abbreviations
## Replacements
abbr -ag rm "trash"
abbr -ag rm trash
## Safety options
abbr -ag cp "cp -i"
@ -35,13 +35,14 @@ if status is-interactive
abbr -ag pps "podman ps --format '{{.Names}}'"
# Aliases
alias cd "z"
alias ls "lsd"
alias cd z
alias ls lsd
alias ll "ls -l"
alias cat "bat"
alias gu "gitui"
alias cat bat
alias gu gitui
alias zola "flatpak run org.getzola.zola"
alias julia "JULIA_NUM_THREADS=16 ~/.juliaup/bin/julia"
alias tb "toolbox run fish"
# Private config
set -l private_config ~/.config/fish/private_config.fish

View file

@ -31,4 +31,6 @@
commit: Some(( code: Enter, modifiers: "")),
newline: Some(( code: Enter, modifiers: "ALT")),
undo_commit: Some(( code: Char('U'), modifiers: "")),
)

View file

@ -54,7 +54,3 @@ auto-format = true
[[language]]
name = "typescript"
auto-format = true
[[language]]
name = "haskell"
auto-format = true

View file

@ -22,12 +22,12 @@ layout {
pane split_direction="vertical" {
pane {
command "fish"
args "-c" "rustup update stable && cargo install-update -a"
args "-c" "rustup self update && rustup update beta && cargo install-update -a"
}
pane {
cwd "/home/mo8it/code/compile/helix"
command "fish"
args "-c" "git pull -r origin master && cargo +stable install --path helix-term --locked"
args "-c" "git pull -r origin master && cargo +beta install --path helix-term --locked"
}
}