diff options
| author | Blista Kanjo | 2022-06-26 20:41:04 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2022-06-26 20:41:04 -0400 |
| commit | 0f9375d3ac419a7a5f2cbd00dc31d6f6b25049c7 (patch) | |
| tree | e98175228dc60a5323827355dbfd19a6f37bd809 /.vimrc | |
| parent | e65b40555c940e05a4103c033e3157fad56d478d (diff) | |
basic vim-plug set-up
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -9,6 +9,10 @@ " Use System Clipboard ":set clipboard=unnamedplus +" ┌┐ ┌─┐┌─┐┬┌─┐ ┬─┐┬ ┬┌┐┌ ┌─┐┌─┐┌┬┐┌┬┐┌─┐┌┐┌┌┬┐┌─┐ +" ├┴┐├─┤└─┐││ ├┬┘│ ││││ │ │ │││││││├─┤│││ ││└─┐ +" └─┘┴ ┴└─┘┴└─┘ ┴└─└─┘┘└┘ └─┘└─┘┴ ┴┴ ┴┴ ┴┘└┘─┴┘└─┘ + filetype plugin on syntax on set number @@ -63,6 +67,19 @@ if $TERM == 'alacritty' set ttymouse=sgr endif +" ╦╔═┌─┐┬ ┬┌┐ ┬┌┐┌┌┬┐┌─┐ ┌─┐┌─┐┬─┐ ═╗ ╦ ╔═╗┬ ┬┌─┐┌┐ ┌─┐┌─┐┬─┐┌┬┐ +" ╠╩╗├┤ └┬┘├┴┐││││ ││└─┐ ├┤ │ │├┬┘ ╔╩╦╝ ║ │ │├─┘├┴┐│ │├─┤├┬┘ ││ +" ╩ ╩└─┘ ┴ └─┘┴┘└┘─┴┘└─┘ └ └─┘┴└─ ╩ ╚═ ╚═╝┴─┘┴┴ └─┘└─┘┴ ┴┴└──┴┘ + vnoremap <C-c> "+y vmap <C-x> "+c map <C-p> "+p + +" ╔═╗┬ ┬ ┬┌─┐┬┌┐┌ ╔╦╗┌─┐┌┐┌┌─┐┌─┐┌─┐┬─┐ +" ╠═╝│ │ ││ ┬││││ ║║║├─┤│││├─┤│ ┬├┤ ├┬┘ +" ╩ ┴─┘└─┘└─┘┴┘└┘ ╩ ╩┴ ┴┘└┘┴ ┴└─┘└─┘┴└─ + +call plug#begin() +Plug 'ycm-core/YouCompleteMe' +call plug#end() + |
