1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-11-09 08:31:15 +01:00

Compare commits

...

5 Commits

Author SHA1 Message Date
1c01039530 nvim: fixed error line 2025-07-20 04:59:42 +02:00
bfcc3267aa change exa for eza 2023-10-23 13:55:30 +02:00
768a4b0aec alias: added prev and next cd 2023-10-20 00:15:47 +02:00
879dfa8d5e nvim: fixed quotations in undodir 2023-04-13 01:35:40 +02:00
marten
bccdd7edfb Update aliasrc 2023-04-02 03:11:38 +02:00
3 changed files with 15 additions and 10 deletions

View File

@@ -11,6 +11,8 @@ alias "...."="cd ../../.."
alias "....."="cd ../../../.."
alias "......"="cd ../../../../.."
alias "dockervol"="cd /var/lib/docker/volumes"
alias prev='cd ../"$(ls -F .. | grep '/' | grep -B1 -xF "${PWD##*/}/" | head -n 1)"'
alias next='cd ../"$(ls -F .. | grep '/' | grep -A1 -xF "${PWD##*/}/" | tail -n 1)"'
# cp
alias cp="cp -i"
@@ -37,10 +39,10 @@ haste() {
}
# ls(d)
alias l="exa"
alias la="exa -la"
alias ll="exa -l"
alias tree="exa --tree"
alias l="eza"
alias la="eza -la"
alias ll="eza -l"
alias tree="eza --tree"
# metaflac
alias tag="metaflac"
@@ -60,6 +62,9 @@ alias ping="ping -c 5"
# rm
alias rm="rm -i"
# rsync
alias rsync="rsync -vh --progress --partial"
# sc-im
alias sc="sc-im"

View File

@@ -13,7 +13,7 @@ Plug 'tomasiser/vim-code-dark'
call plug#end()
" end plugin section
set go=a
"set go=a
" enable mouse for all modes
set mouse=a
@@ -77,7 +77,7 @@ endif
" enable persistent undo
if has('persistent_undo')
set undofile
set undodir=$XDG_CACHE_HOME/vim/undo
set undodir="$XDG_CACHE_HOME/vim/undo"
endif
" unmap unwanted commands

View File

@@ -8,24 +8,24 @@ My debian-based/arch compatible server/root-account dotfiles.
### Required
- exa
- git
- tmux
- neovim
- zsh
- eza
- sc-im (recommended)
#### Debian-based Systems
- `apt install git tmux neovim zsh`
- get the rest manually
- https://github.com/Peltoche/lsd
- https://github.com/andmarti1424/sc-im/wiki/Ubuntu-with-XLSX-import-&-export
- [eza](https://github.com/eza-community/eza)
- [sc-im (recommended)](https://github.com/andmarti1424/sc-im/wiki/Ubuntu-with-XLSX-import-&-export)
#### Arch-based Systems
- Get the yay-AUR-pckagemanager or something similar (`pacman -S yay`).
- `yay -S exa git tmux neovim zsh sc-im`
- `yay -S eza git tmux neovim zsh sc-im`
## Migration of my dotfiles to other system