diff options
author | Adam <adam.moloney.stuck@gmail.com> | 2021-10-15 00:17:14 +0200 |
---|---|---|
committer | adamstuck <adam.moloney.stuck@gmail.com> | 2021-10-15 00:18:23 +0200 |
commit | 38949564a4325616be0c3b2b67e693db3a62b88f (patch) | |
tree | 2e984fc626392fe42d8108d93401ca4b49728cd3 /.vimrc | |
parent | bff9b0ccc120c62dd7bc9725bc80985acad60e1d (diff) |
Added light plugins to .vimrc + updated startify banners
Diffstat (limited to '.vimrc')
-rw-r--r-- | .vimrc | 26 |
1 files changed, 24 insertions, 2 deletions
@@ -1,3 +1,11 @@ +call plug#begin('~/.vim/plugged') + Plug 'gruvbox-community/gruvbox' + Plug 'tpope/vim-fugitive' + Plug 'tpope/vim-surround' + Plug 'tpope/vim-repeat' + Plug 'mhinz/vim-startify' +call plug#end() + if has('filetype') filetype indent plugin on endif @@ -35,6 +43,7 @@ set softtabstop=4 set expandtab set noswapfile set nowrap +set background=dark map Y y$ nnoremap <C-L> :nohl<CR><C-L> @@ -55,7 +64,20 @@ nnoremap <leader>j :wincmd j<CR> nnoremap <leader>k :wincmd k<CR> nnoremap <leader>l :wincmd l<CR> -colorscheme default +colorscheme gruvbox highlight CursorLine cterm=NONE ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE -highlight CursorLineNr cterm=bold ctermbg=NONE ctermfg=Yellow +highlight CursorLineNr cterm=bold ctermbg=Black ctermfg=Yellow set cursorline + +let g:ascii = [ +\' ,, ', +\' db ', +\' ', +\"`7M' `MF'`7MM `7MMpMMMb.pMMMb. ", +\' VA ,V MM MM MM MM ', +\' VA ,V MM MM MM MM ', +\' VVV MM MM MM MM ', +\' W .JMML..JMML JMML JMML', +\'', +\] +let g:startify_custom_header = startify#pad(g:ascii) |