mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-14 03:03:49 +01:00
update vim config
This commit is contained in:
parent
35a0575a20
commit
4f53b395f4
2 changed files with 9 additions and 5 deletions
|
@ -1 +1,2 @@
|
|||
GuiFont Iosevka Nerd Font Complete:h12
|
||||
GuiFont! Iosevka:h12
|
||||
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
packadd dracula
|
||||
syntax enable
|
||||
colorscheme dracula
|
||||
|
||||
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
|
@ -9,7 +6,7 @@ set expandtab
|
|||
command GoToFile cd %:p:h
|
||||
set clipboard^=unnamedplus
|
||||
set shell=bash shellquote=\" shellxquote=\"
|
||||
set shcf=-i\ -c
|
||||
set shcf=-c
|
||||
tnoremap <Esc> <C-\><C-n>
|
||||
set number
|
||||
|
||||
|
@ -25,9 +22,15 @@ Plug 'Xuyuanp/nerdtree-git-plugin'
|
|||
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
Plug 'cespare/vim-toml'
|
||||
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
||||
Plug 'dracula/vim', { 'as': 'dracula' }
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'cespare/vim-toml'
|
||||
|
||||
call plug#end()
|
||||
|
||||
colorscheme dracula
|
||||
|
||||
" GoTo code navigation.
|
||||
nmap <silent> gd <Plug>(coc-definition)
|
||||
nmap <silent> gy <Plug>(coc-type-definition)
|
||||
|
|
Loading…
Reference in a new issue