This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local status_ok, which_key = pcall(require, "which-key") | |
| if not status_ok then | |
| return | |
| end | |
| local setup = { | |
| plugins = { | |
| marks = true, -- shows a list of your marks on ' and ` | |
| registers = true, -- shows your registers on " in NORMAL or <C-r> in INSERT mode | |
| spelling = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias l='ls -a' | |
| alias ll='ls -lh' | |
| alias la='ls -all' | |
| alias c='clear' | |
| alias q='exit' | |
| alias dk='docker' | |
| .. () { | |
| cd .. | |
| } |