From 093660fb3381fca8c2568f6a2a13501f8dd5d37f Mon Sep 17 00:00:00 2001 From: Adam <56338480+adastx@users.noreply.github.com> Date: Fri, 15 Oct 2021 00:17:14 +0200 Subject: Added light plugins to .vimrc + updated startify banners --- .config/nvim/lua/opts.lua | 22 +++++++++------------- .config/nvim/lua/plugins.lua | 1 - .vimrc | 26 ++++++++++++++++++++++++-- 3 files changed, 33 insertions(+), 16 deletions(-) diff --git a/.config/nvim/lua/opts.lua b/.config/nvim/lua/opts.lua index 9d3caf2..a67a07a 100644 --- a/.config/nvim/lua/opts.lua +++ b/.config/nvim/lua/opts.lua @@ -139,19 +139,15 @@ require("indent_blankline").setup { vim.cmd [[ let g:ascii = [ - \ '', - \ ' @@@@@@ @@@@@@@ @@@@@@ @@@@@@@@@@ @@@@@@ @@@ @@@ @@@ ', - \ ' @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@@@@ @@@@@@@ @@@ @@@ @@@ ', - \ ' @@! @@@ @@! @@@ @@! @@@ @@! @@! @@! !@@ @@! !@@ @@! ', - \ ' !@! @!@ !@! @!@ !@! @!@ !@! !@! !@! !@! !@! @!! !@! ', - \ ' @!@!@!@! @!@ !@! @!@!@!@! @!! !!@ @!@ !!@@!! @!@@!@! !!@ ', - \ ' !!!@!!!! !@! !!! !!!@!!!! !@! ! !@! !!@!!! !!@!!! !!! ', - \ ' !!: !!! !!: !!! !!: !!! !!: !!: !:! !!: :!! !!: ', - \ ' :!: !:! :!: !:! :!: !:! :!: :!: !:! :!: !:! :!: ', - \ ' :: ::: :::: :: :: ::: ::: :: :::: :: :: ::: :: ', - \ ' : : : :: : : : : : : : :: : : : ::: : ', - \ '', - \ '', + \' ,, ', + \' db ', + \' ', + \"`7MMpMMMb.`7M' `MF'`7MM `7MMpMMMb.pMMMb. ", + \' MM MM VA ,V MM MM MM MM ', + \' MM MM VA ,V MM MM MM MM ', + \' MM MM VVV MM MM MM MM ', + \'.JMML JMML. W .JMML..JMML JMML JMML', + \'', \] let g:startify_custom_header = startify#pad(g:ascii) ]] diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index ad31585..4c73a72 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -2,7 +2,6 @@ local use = require('packer').use require('packer').startup(function() use 'wbthomason/packer.nvim' use 'gruvbox-community/gruvbox' - use 'tomasiser/vim-code-dark' use 'tpope/vim-fugitive' use 'tpope/vim-surround' use 'tpope/vim-repeat' 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 :nohl @@ -55,7 +64,20 @@ nnoremap j :wincmd j nnoremap k :wincmd k nnoremap l :wincmd l -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) -- cgit v1.2.3-70-g09d2