nushell: init new aliases

This commit is contained in:
notohh 2023-05-17 08:54:35 -04:00
parent ed1f0fa25c
commit 00b1619eba
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -4,12 +4,17 @@ source ~/.cache/starship/init.nu
alias zj = zellij alias zj = zellij
alias zjd = zellij --layout ../.config/zellij/snowflake.kdl alias zjd = zellij --layout ../.config/zellij/snowflake.kdl
alias zjs = zellij --layout ./config/zellij/ssh.kdl
alias lg = lazygit alias lg = lazygit
alias ld = lazydocker alias ld = lazydocker
alias la = ls -a alias l = exa -ughH --icons
alias la = exa -alughH --git --icons
alias c = clear
alias cat = bat alias cat = bat
alias rm = rm -i
alias cp = cp -i
alias mv = mv -i
alias fmt = alejandra * alias fmt = alejandra *
alias download = yt-dlp -P ~/Videos/downloaded
let-env config = { let-env config = {
@ -35,7 +40,7 @@ let-env config = {
history: { history: {
max_size: 10000 # Session has to be reloaded for this to take effect max_size: 10000 # Session has to be reloaded for this to take effect
sync_on_enter: true # Enable to share history between multiple sessions, else you have to close the session to write history to file sync_on_enter: true # Enable to share history between multiple sessions, else you have to close the session to write history to file
file_format: "plaintext" # "sqlite" or "plaintext" file_format: "sqlite" # "sqlite" or "plaintext"
} }
completions: { completions: {
case_sensitive: false # set to true to enable case-sensitive completions case_sensitive: false # set to true to enable case-sensitive completions