chore: update dotfiles

This commit is contained in:
2021-02-15 20:42:32 -06:00
parent 358f79c970
commit 0053ea7272
2 changed files with 12 additions and 190 deletions

View File

@@ -45,6 +45,7 @@ inoremap <silent><expr> <c-space> coc#refresh()
" coc.nvim quick fix
nmap <leader>qf <Plug>(coc-fix-current)
" Use tab for trigger completion with characters ahead and navigate.
" Used by coc.nvim
inoremap <silent><expr> <TAB>
@@ -152,20 +153,23 @@ Plug 'terryma/vim-multiple-cursors'
" File Browser
Plug 'preservim/nerdtree'
" NerdTree Icons (Should be last according to docs)
Plug 'ryanoasis/vim-devicons'
" Better Rust Synatax Highlighting
Plug 'arzg/vim-rust-syntax-ext'
" Auto-close brackets
Plug 'jiangmiao/auto-pairs'
" NerdTree Icons (Should be last according to docs)
Plug 'ryanoasis/vim-devicons'
call plug#end()
" Autosave with rust-fmt (Rust Only)
" Call RusftFmt on write to buffer
let g:rustfmt_autosave = 1
" Configuration
set noshowmode " Not Needed because we have Lightline
set noshowmode " Lightline requires we turn this off
colorscheme one
syntax enable
" Custom Shortcuts
nnoremap <silent><nowait> <space>o :NERDTreeToggle<CR>
nnoremap <silent><nowait> <space>s :TagbarToggle<CR>