mirror of
https://github.com/itme-brain/vim.git
synced 2026-05-08 07:30:13 -04:00
Compare commits
No commits in common. "c5b93f1225c1434e93f4be88bb1e8686e94add79" and "d5bdb39d7e65e679b3052e5ec437f75e4ec8e594" have entirely different histories.
c5b93f1225
...
d5bdb39d7e
1 changed files with 4 additions and 1 deletions
5
vimrc
5
vimrc
|
|
@ -8,12 +8,14 @@ autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
|
|||
\| endif
|
||||
|
||||
call plug#begin('~/.vim/plugged')
|
||||
Plug 'chriskempson/base16-vim'
|
||||
Plug 'tpope/vim-surround'
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
||||
Plug 'junegunn/fzf.vim'
|
||||
Plug 'mtdl9/vim-log-highlighting'
|
||||
Plug 'machakann/vim-highlightedyank'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'osyo-manga/vim-anzu'
|
||||
call plug#end()
|
||||
|
||||
|
|
@ -22,7 +24,7 @@ set background=dark
|
|||
if has('termguicolors')
|
||||
set termguicolors
|
||||
endif
|
||||
silent! colorscheme anticuus
|
||||
silent! colorscheme base16-onedark
|
||||
|
||||
highlight Normal ctermbg=NONE guibg=NONE ctermfg=White guifg=#FFFFFF
|
||||
highlight NonText ctermbg=NONE guibg=NONE
|
||||
|
|
@ -35,6 +37,7 @@ highlight LineNr ctermbg=NONE guibg=NONE
|
|||
highlight Visual ctermbg=Gray guibg=Gray ctermfg=Black guifg=Black
|
||||
|
||||
let g:highlightedyank_highlight_duration = 140
|
||||
let g:lightline = { 'colorscheme': 'deus', }
|
||||
|
||||
let $FZF_DEFAULT_OPTS = '--bind=tab:up,shift-tab:down'
|
||||
let g:fzf_layout = { 'window': 'enew' }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue