chore(config): update fd and nvim
parent
4bbfcbfa08
commit
01f42517c8
|
@ -20,6 +20,9 @@ sumdb
|
|||
vendor
|
||||
generated
|
||||
test
|
||||
*test*.go
|
||||
*mock*.go
|
||||
*generated*.go
|
||||
|
||||
# Python
|
||||
venv
|
||||
|
|
|
@ -23,22 +23,28 @@ set clipboard+=unnamedplus
|
|||
" FZF
|
||||
set rtp+=~/.fzf
|
||||
|
||||
" Plugins config
|
||||
let g:lightline={'colorscheme':'onedark'}
|
||||
|
||||
" vim-plug
|
||||
" https://github.com/junegunn/vim-plug
|
||||
call plug#begin()
|
||||
|
||||
" Should use
|
||||
Plug 'preservim/nerdtree'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'nvim-lualine/lualine.nvim'
|
||||
Plug 'tpope/vim-fugitive'
|
||||
|
||||
" Colorschemes
|
||||
Plug 'joshdick/onedark.vim'
|
||||
Plug 'projekt0n/github-nvim-theme'
|
||||
|
||||
call plug#end()
|
||||
|
||||
set background=dark
|
||||
colorscheme onedark
|
||||
colorscheme github_dark
|
||||
|
||||
lua << EOF
|
||||
require('lualine').setup{
|
||||
options = {
|
||||
theme = 'github',
|
||||
}
|
||||
}
|
||||
EOF
|
||||
|
|
Loading…
Reference in New Issue