Skip to content

Instantly share code, notes, and snippets.

@saeedvaziry
Created September 14, 2023 11:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saeedvaziry/07d5b072c441c0fda1707afc0ee9b532 to your computer and use it in GitHub Desktop.
Save saeedvaziry/07d5b072c441c0fda1707afc0ee9b532 to your computer and use it in GitHub Desktop.
Vim Configuration
nnoremap <silent> <C-z> :u<CR>
nnoremap <silent> <C-q> :q!<CR>
nnoremap <silent> <C-s> :w<CR>
call plug#begin()
Plug 'preservim/nerdtree'
nnoremap <silent> <C-b> :NERDTreeToggle<CR>
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
Plug 'sheerun/vim-polyglot'
Plug 'joshdick/onedark.vim'
Plug 'vim-airline/vim-airline'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
nnoremap <silent> <C-p> :Files<CR>
Plug 'tpope/vim-surround'
Plug 'mg979/vim-visual-multi', {'branch': 'master'}
call plug#end()
colorscheme onedark
@saeedvaziry
Copy link
Author

Install VimPlug first and then

:PlugInstall

and then restart vim

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment