Add vista to vimrc

This commit is contained in:
Marco Thomas
2020-12-11 09:54:22 +01:00
parent 6fd0ab6b43
commit f27ef317fb
2 changed files with 5 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ opacity-rule = [
backend = "glx"; backend = "glx";
blur: { blur: {
method: "dual_kawase"; method: "dual_kawase";
strength = 4; strength = 5;
} }
# Fading # Fading

View File

@@ -33,6 +33,7 @@ if has ("nvim")
Plug 'Shougo/neosnippet.vim' " snippet support Plug 'Shougo/neosnippet.vim' " snippet support
Plug 'Shougo/neosnippet-snippets' " actual snippets Plug 'Shougo/neosnippet-snippets' " actual snippets
Plug 'nvim-lua/completion-nvim' " autocomplete Plug 'nvim-lua/completion-nvim' " autocomplete
Plug 'liuchengxu/vista.vim' " tags
endif endif
call plug#end() call plug#end()
@@ -88,8 +89,6 @@ let g:lightline.active = {
\ 'right': [['lineinfo'], ['percent'], ['fileformat', 'fileencoding', 'filetype']] \ 'right': [['lineinfo'], ['percent'], ['fileformat', 'fileencoding', 'filetype']]
\ } \ }
"let g:lightline.separator = { 'left': "", 'right': "" }
"let g:lightline.tabline_separator = { 'left': "", 'right': "" }
let g:lightline.subseparator = { 'left': '|', 'right': '|' } let g:lightline.subseparator = { 'left': '|', 'right': '|' }
" ============================== Indents and Whitespaces " ============================== Indents and Whitespaces
@@ -130,6 +129,9 @@ cmap q1 q!
nmap <leader>ff :Files<CR> nmap <leader>ff :Files<CR>
nmap <leader>ft :tabe<CR>:Files<CR> nmap <leader>ft :tabe<CR>:Files<CR>
" vista tags
nmap <leader>v :Vista finder fzf:vim_lsp<CR>
" ============================== Cool NeoVim Shit " ============================== Cool NeoVim Shit
if has ("nvim") if has ("nvim")
" setup lsp configs " setup lsp configs