diff options
| author | Anton Bobov <abobov@gmail.com> | 2020-01-31 09:16:37 +0500 |
|---|---|---|
| committer | Anton Bobov <abobov@gmail.com> | 2020-01-31 09:25:29 +0500 |
| commit | 598b25c6bdb9553d577ab63d15e51cfcf8301801 (patch) | |
| tree | 9661fc37afc707cfe04f3372bda9ccd9a4d5d4ca | |
| parent | a1d12a3e4578b0c95f870e5257a39bdc848cbe4c (diff) | |
Updates.
| -rw-r--r-- | files/.vimrc | 12 | ||||
| -rw-r--r-- | files/.zsh/rc/S50_aliases | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/files/.vimrc b/files/.vimrc index 4bbe740..3dbb441 100644 --- a/files/.vimrc +++ b/files/.vimrc @@ -22,6 +22,8 @@ Plugin 'https://github.com/tpope/vim-unimpaired' " Intelligent date inc/dec Plugin 'https://github.com/tpope/vim-speeddating' +" Readline style insertion +Plugin 'tpope/vim-rsi' " Show colors in CSS format Plugin 'https://github.com/ap/vim-css-color' " Load project .vimrc files @@ -60,6 +62,11 @@ Plugin 'https://github.com/arecarn/vim-crunch' " Vim Tmux Navigator Plugin 'christoomey/vim-tmux-navigator' Plugin 'lervag/vimtex' +" A solid language pack for Vim. +Plugin 'sheerun/vim-polyglot' +Plugin 'terryma/vim-expand-region' +" Maintains a history of previous yanks, changes and deletes +Plugin 'vim-scripts/YankRing.vim' " File types @@ -69,12 +76,8 @@ Plugin 'https://github.com/ledger/vim-ledger' " Jade templates Plugin 'https://github.com/digitaltoad/vim-jade.git' -" Markdown -Plugin 'https://github.com/plasticboy/vim-markdown.git' " Pandoc Plugin 'vim-pandoc/vim-pandoc' -" TypeScript -Plugin 'https://github.com/HerringtonDarkholme/yats.vim' " Orgmode Plugin 'https://github.com/jceb/vim-orgmode' @@ -572,6 +575,7 @@ let g:templates_directory=$HOME . "/.vim/templates" " }}} " Ctrl-P {{{ +let g:ctrlp_map = "'p" let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""' let g:ctrlp_user_caching = 0 diff --git a/files/.zsh/rc/S50_aliases b/files/.zsh/rc/S50_aliases index 068f38b..c8923ca 100644 --- a/files/.zsh/rc/S50_aliases +++ b/files/.zsh/rc/S50_aliases @@ -26,8 +26,10 @@ alias d='dirs -v | head -10' alias rm='rm --interactive=once' alias mv='mv --interactive' +alias mkdir='mkdir -pv' alias cp='cp --recursive' alias cal='ncal -Mb' +alias fd='fdfind' alias c=' clear' alias v='vim' |
