Skip to content

Instantly share code, notes, and snippets.

View haoran-mc's full-sized avatar

haoran haoran-mc

View GitHub Profile
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 = {
@haoran-mc
haoran-mc / alias.sh
Last active August 23, 2023 04:11
remote alias
alias l='ls -a'
alias ll='ls -lh'
alias la='ls -all'
alias c='clear'
alias q='exit'
alias dk='docker'
.. () {
cd ..
}