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 | |
parent | bff9b0ccc120c62dd7bc9725bc80985acad60e1d (diff) |
Added light plugins to .vimrc + updated startify banners
-rw-r--r-- | .config/nvim/lua/opts.lua | 22 | ||||
-rw-r--r-- | .config/nvim/lua/plugins.lua | 1 | ||||
-rw-r--r-- | .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' @@ -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) |