Created
September 14, 2023 11:30
-
-
Save saeedvaziry/07d5b072c441c0fda1707afc0ee9b532 to your computer and use it in GitHub Desktop.
Vim Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install VimPlug first and then
and then restart vim