chore(config): update fd and nvim

main
sudo pacman -Syu 2022-01-10 15:37:36 +07:00
parent 4bbfcbfa08
commit 01f42517c8
2 changed files with 14 additions and 5 deletions

View File

@ -20,6 +20,9 @@ sumdb
vendor
generated
test
*test*.go
*mock*.go
*generated*.go
# Python
venv

View File

@ -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