2023-11-07 15:48:00 +01:00
|
|
|
source ~/.config/nushell/init.nu
|
2023-11-07 14:26:22 +01:00
|
|
|
|
2023-11-07 17:53:57 +01:00
|
|
|
# Change default config
|
|
|
|
$env.config.cursor_shape = {
|
|
|
|
emacs: block
|
|
|
|
vi_insert: block
|
|
|
|
vi_normal: underscore
|
|
|
|
}
|
|
|
|
|
2023-11-07 18:27:51 +01:00
|
|
|
$env.config.history = {
|
|
|
|
max_size: 100_000_000_000_000
|
|
|
|
sync_on_enter: true
|
|
|
|
file_format: "sqlite"
|
|
|
|
isolation: false
|
|
|
|
}
|
|
|
|
|
|
|
|
$env.config.filesize = {
|
|
|
|
metric: false
|
|
|
|
format: "auto"
|
|
|
|
}
|
|
|
|
|
2023-11-07 17:53:57 +01:00
|
|
|
# ls aliases
|
2023-11-07 23:41:30 +01:00
|
|
|
alias _ls = ls
|
2023-11-07 14:26:22 +01:00
|
|
|
|
2023-11-07 17:53:57 +01:00
|
|
|
def l [dir?: string] {
|
2023-11-07 23:41:30 +01:00
|
|
|
_ls (if $dir == null { "" } else { $dir })
|
|
|
|
| sort-by type name -i | grid -c
|
2023-11-07 14:26:22 +01:00
|
|
|
}
|
|
|
|
|
2023-11-07 17:53:57 +01:00
|
|
|
def ls [dir?: string] {
|
2023-11-07 23:41:30 +01:00
|
|
|
_ls (if $dir == null { "" } else { $dir })
|
|
|
|
| sort-by type name -i | grid -c
|
2023-11-07 14:26:22 +01:00
|
|
|
}
|
2023-11-07 15:48:00 +01:00
|
|
|
|
2023-11-07 17:53:57 +01:00
|
|
|
def la [dir?: string] {
|
2023-11-07 23:41:30 +01:00
|
|
|
_ls -al (if $dir == null { "" } else { $dir })
|
|
|
|
| sort-by type name -i
|
|
|
|
| select mode name target user size modified
|
2023-11-07 17:53:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
def ll [dir?: string] {
|
2023-11-07 23:41:30 +01:00
|
|
|
_ls -l (if $dir == null { "" } else { $dir })
|
|
|
|
| sort-by type name -i
|
|
|
|
| select name type target user size modified
|
2023-11-07 17:53:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# cool df
|
2023-11-07 15:48:00 +01:00
|
|
|
def df [] {
|
|
|
|
^df -h
|
2023-11-07 23:41:30 +01:00
|
|
|
| str replace "Sys. de fichiers" "@"
|
|
|
|
| str replace "Monté sur" "@"
|
2023-11-07 15:48:00 +01:00
|
|
|
| detect columns
|
2023-11-07 23:41:30 +01:00
|
|
|
| rename "Sys. de fichiers" "Taille" "Utilisé" "Dispo" "Uti%" "Monté sur"
|
2023-11-07 15:48:00 +01:00
|
|
|
}
|
|
|
|
|
2023-11-07 17:53:57 +01:00
|
|
|
# vim aliases
|
|
|
|
alias v = nvim
|
|
|
|
|
|
|
|
# git aliases
|
|
|
|
alias g = git
|
|
|
|
alias ga = git add
|
|
|
|
alias gaa = git add --all
|
|
|
|
alias gco = git checkout
|
|
|
|
alias gcb = git checkout -b
|
|
|
|
alias gc = git commit --verbose
|
|
|
|
alias gca = git commit --verbose --all
|
|
|
|
alias gd = git diff
|
|
|
|
alias glog = git log --oneline --decorate --graph
|
|
|
|
alias gl = git pull
|
|
|
|
alias gp = git push
|
|
|
|
alias gst = git status
|
|
|
|
alias gs = git status
|
|
|
|
def gpsup [] { git push --set-upstream origin (git rev-parse --abbrev-ref HEAD) }
|
|
|
|
|
2023-11-07 23:41:30 +01:00
|
|
|
# ssh completion
|
|
|
|
def _ssh_hosts [] {
|
|
|
|
open .ssh/config
|
|
|
|
| lines
|
|
|
|
| find -ir "host "
|
|
|
|
| each {|x| echo $x | split row " " | get 1 }
|
|
|
|
}
|
|
|
|
|
|
|
|
export extern "ssh" [
|
|
|
|
host?: string@_ssh_hosts
|
|
|
|
]
|
|
|
|
|
|
|
|
# gclone aliases
|
|
|
|
def _gclone_dirs [] {
|
|
|
|
let slashes = ($env.GCLONE_PATH | split row "/" | length) + 2
|
|
|
|
open ([$env.GCLONE_PATH, .cdgcache] | path join)
|
|
|
|
| lines
|
|
|
|
| where {|x| (echo $x | split row "/" | length) >= $slashes }
|
|
|
|
| each {|x| $x | split row "/" | last }
|
|
|
|
| sort
|
|
|
|
| uniq
|
|
|
|
}
|
|
|
|
|
|
|
|
def-env cdg [key: string@_gclone_dirs] { cd (CLICOLOR_FORCE=1 pgd $key) }
|
|
|
|
|
|
|
|
# docker aliases
|
|
|
|
alias ld = lazydocker
|
|
|
|
alias dc = docker-compose
|
|
|
|
alias dcb = docker-compose build
|
|
|
|
def dcp [] { docker-compose build; docker-compose push }
|
|
|
|
alias dcu = docker-compose up -d --build --remove-orphans
|
|
|
|
alias dcd = docker-compose down
|
|
|
|
def dcr [] { docker-compose down; docker-compose up -d --build --remove-orphans }
|
|
|
|
|
|
|
|
# kubernetes aliases
|
|
|
|
$env.KUBECONFIG = if ([$env.HOME, .kubes, current-cube] | path join | path exists) {
|
|
|
|
open ([$env.HOME, .kubes, current-cube] | path join)
|
|
|
|
} else {
|
|
|
|
""
|
|
|
|
}
|
|
|
|
|
|
|
|
def _kube_kubes [] {
|
|
|
|
_ls ~/.kubes | where type == dir | get name | path basename
|
|
|
|
}
|
|
|
|
|
|
|
|
def-env kube [name?: string@_kube_kubes] {
|
|
|
|
use assert
|
|
|
|
|
|
|
|
let kubes_path = [$env.HOME, .kubes] | path join
|
|
|
|
|
|
|
|
if $name == null {
|
|
|
|
rm ([$kubes_path, current-cube] | path join)
|
|
|
|
$env.KUBECONFIG = ""
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let kube_config = [$kubes_path, $name, config] | path join
|
|
|
|
|
|
|
|
if not ($kube_config | path exists) {
|
|
|
|
error make {msg: ([$kube_config, " does not exist"] | str join)}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $kube_config | save -f ([$kubes_path, current-cube] | path join)
|
|
|
|
$env.KUBECONFIG = $kube_config
|
|
|
|
}
|
|
|
|
|
|
|
|
alias kns = k9s
|
|
|
|
|
2023-11-07 17:53:57 +01:00
|
|
|
# Useful aliases
|
|
|
|
alias :q = exit
|
|
|
|
alias pdf = evince
|
2023-11-07 23:41:30 +01:00
|
|
|
alias u = ^update
|
2023-11-07 17:53:57 +01:00
|
|
|
alias rg = rg -uu
|
|
|
|
alias p = pass
|
|
|
|
alias pc = pass --clip
|
2023-11-07 23:41:30 +01:00
|
|
|
def-env mkcd [dir: string] { mkdir $dir; cd $dir }
|
2023-11-07 17:53:57 +01:00
|
|
|
|
|
|
|
# Start tfetch
|
|
|
|
tfetch
|