24ce8f3 Migrate '.vim/plugin' to neovim e3d9612 Remove vim yin/yang colorschemes 05986a3 Migrate '.vim/ftplugin' to neovim 05bc2ec Migrate vim snippets to neovim (LuaSnip) 128ae8e Migrate '.vim/ftdetect/prolog' to neovim f3188f7 Migrate '.vim/after/syntax' to neovim 85d56f9 Migrate vim init config to neovim afca2ca Migrate '.vim/after' to neovim d6875c9 Add 'eslint_d' PID to 'nvim-lint' config 568e45f Remove jira aliases 78fa170 Disable 'xdg-user-dirs' by default 5216f79 Alias bash 'history' command to 'h' 0f29dc3 Add neovim dependencies to flake c901a1c testdc4ebfcMerge commit '490998275cbdc5ff032d4a39794bf850f4bfefec'73fd4afAdd neovim 'auto-session' plugin setupff47da9Add minimal readme to my neovim configuration6dff3ebAdd minimal readme to my neovim configurationc94ccd3Remove neovim lazy load related config75ca003Fall back to 'paq.nvim' only when not on 'nixCats'78094a0Add 'nixCatsUtils' from 'nixCats'6e81624Add neovim packages to 'nixCats' flake6ded0b1Add minimal 'nixCats' flake templated0550b3Link NixOS repo in dotfiles repository git-subtree-dir: dots git-subtree-split: 24ce8f39afe8822e2d1bfb2bcd57fdafece14c30
58 lines
1.2 KiB
Bash
58 lines
1.2 KiB
Bash
# shellcheck shell=bash
|
|
# vim: set ft=bash :
|
|
|
|
alias ..="cd .."
|
|
|
|
alias ls="ls --color=auto"
|
|
alias l="ls -1p"
|
|
alias ll="ls -lhp"
|
|
alias lt="ls -lhtp"
|
|
alias la="ls -lhap"
|
|
alias lta="ls -lhatp"
|
|
alias ldir="ls -dp" # list directories
|
|
|
|
alias grep="grep --color=auto"
|
|
|
|
alias rm="rm -I --preserve-root"
|
|
alias mv="mv -iv"
|
|
alias cp="cp -iv"
|
|
alias ln="ln -i"
|
|
alias mkdir="mkdir -pv"
|
|
alias chown="chown --preserve-root"
|
|
alias chmod="chmod --preserve-root"
|
|
alias chgrp="chgrp --preserve-root"
|
|
|
|
alias ip="ip --color"
|
|
alias ipa="ip -brief address"
|
|
alias ipl="ip -brief link"
|
|
alias ipr="ip route"
|
|
|
|
alias clip="xclip -sel clip"
|
|
|
|
alias df="df -kTh"
|
|
alias fzfpac="pacman -Slq | fzf -m --preview 'pacman -Si {1}' | xargs -ro sudo pacman -S"
|
|
alias path='echo -e ${PATH//:/\\n}' # Pretty print path variables
|
|
|
|
# Programs
|
|
alias h="history"
|
|
alias o="xdg-open"
|
|
alias v="nvim"
|
|
alias g='git'
|
|
alias t=' task'
|
|
alias tsh='tasksh'
|
|
alias z='zathura --fork'
|
|
alias f='fzf'
|
|
alias fm='pcmanfm &>/dev/null &'
|
|
alias mm='micromamba'
|
|
|
|
# Languages
|
|
alias r5="plt-r5rs --no-prim"
|
|
alias hs="ghci"
|
|
alias pl="swipl"
|
|
alias py="python"
|
|
alias r="R"
|
|
|
|
alias azerty="setxkbmap be"
|
|
alias qwerty="setxkbmap us"
|
|
alias cole="setxkbmap us -variant colemak"
|