summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorAdam <56338480+adastx@users.noreply.github.com>2021-10-15 00:17:14 +0200
committerAdam <56338480+adastx@users.noreply.github.com>2021-10-15 00:17:14 +0200
commit093660fb3381fca8c2568f6a2a13501f8dd5d37f (patch)
treecf5cb517ec62e2f79126126e45526f021fdd0580 /.vimrc
parentc03fde58441c18c657bb108d6b49e45c13238b2b (diff)
Added light plugins to .vimrc + updated startify banners
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc26
1 files changed, 24 insertions, 2 deletions
diff --git a/.vimrc b/.vimrc
index 8e50564..6997b29 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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)