diff options
Diffstat (limited to 'dotfiles/cheat')
-rw-r--r-- | dotfiles/cheat/commands | 36 | ||||
-rw-r--r-- | dotfiles/cheat/vim | 6 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dotfiles/cheat/commands b/dotfiles/cheat/commands index 97300f2..858036f 100644 --- a/dotfiles/cheat/commands +++ b/dotfiles/cheat/commands @@ -22,3 +22,39 @@ $ cp monfidefoudefoudefou[c]hieffffffffffr dir (8) => Alt-D : Erase from cursor to the end of word (9) => Ctrl-U : Erase from cursor to the start of line (10) => Ctrl-K : Erase from cursor to the end of line + +# Useful non default command + +## Better ls +https://github.com/ogham/exa + +``` +exa +``` + +## Better cat +https://github.com/sharkdp/bat + +``` +bat +``` + +## Fuzzy search file + +``` +fzf +``` + +## Better find +https://github.com/sharkdp/fd + +``` +fd +``` + +## Ctop - Top-like interface for container metrics +https://github.com/bcicen/ctop + +``` +ctop +``` diff --git a/dotfiles/cheat/vim b/dotfiles/cheat/vim index fb35287..5c14dae 100644 --- a/dotfiles/cheat/vim +++ b/dotfiles/cheat/vim @@ -84,3 +84,9 @@ And save it in a better name: `:WorkspaceSave {name}` :set foldmethod=indent foldlevel=1 za # toggle indent + +# spellchecking +`:set spell` +``:set spelllang=fr` +`:spell` +Then select with `z=` |