Shorten alias, add comment
This commit is contained in:
parent
c0ff58e050
commit
3a4d049f5f
2
vimrc
2
vimrc
|
@ -168,6 +168,8 @@ let g:go_info_mode='gopls'
|
||||||
let g:rustfmt_autosave = 1
|
let g:rustfmt_autosave = 1
|
||||||
|
|
||||||
" ALE configuration:
|
" ALE configuration:
|
||||||
|
" Note: needs https://github.com/dense-analysis/ale/issues/3373
|
||||||
|
" to avoid "json decode error" during deoplete resolution.
|
||||||
set omnifunc=ale#completion#OmniFunc
|
set omnifunc=ale#completion#OmniFunc
|
||||||
function SymbolSearch()
|
function SymbolSearch()
|
||||||
call inputsave()
|
call inputsave()
|
||||||
|
|
4
zshrc
4
zshrc
|
@ -130,8 +130,8 @@ git config --global alias.br branch
|
||||||
alias sysc="systemctl"
|
alias sysc="systemctl"
|
||||||
alias hib="sudo systemctl hibernate"
|
alias hib="sudo systemctl hibernate"
|
||||||
alias dcd="docker-compose -f docker-compose.yml -f docker-compose.development.yml"
|
alias dcd="docker-compose -f docker-compose.yml -f docker-compose.development.yml"
|
||||||
alias tmkp="tmux kill-pane"
|
alias tkp="tmux kill-pane"
|
||||||
alias tmkw="tmux kill-window"
|
alias tkw="tmux kill-window"
|
||||||
alias updatevimplugins="cd $HOME/.vim/pack/git-plugins && find -maxdepth 2 -type d | xargs -I{} bash -c 'cd {} ; git pull --rebase' ; cd -"
|
alias updatevimplugins="cd $HOME/.vim/pack/git-plugins && find -maxdepth 2 -type d | xargs -I{} bash -c 'cd {} ; git pull --rebase' ; cd -"
|
||||||
|
|
||||||
# recursive grep with line numbers and colour, ignoring binary files:
|
# recursive grep with line numbers and colour, ignoring binary files:
|
||||||
|
|
Loading…
Reference in New Issue