Skip to content

Instantly share code, notes, and snippets.

@officialpiyush
Created March 13, 2022 07:31
Show Gist options
  • Save officialpiyush/3635d360d0e947d900a7d1019e64c288 to your computer and use it in GitHub Desktop.
Save officialpiyush/3635d360d0e947d900a7d1019e64c288 to your computer and use it in GitHub Desktop.
:set number
:set relativenumber
:set autoindent
:set tabstop=4
:set shiftwidth=4
:set expandtab
:set softtabstop=4
:set mouse=a
call plug#begin()
Plug 'https://github.com/vim-airline/vim-airline' " StatusBar
Plug 'https://github.com/preservim/nerdtree' " Sidebar
Plug 'https://github.com/rafi/awesome-vim-colorschemes' " Retro Scheme
Plug 'https://github.com/ryanoasis/vim-devicons' " Developer Icons
Plug 'https://github.com/tc50cal/vim-terminal' " Vim Terminal
Plug 'https://github.com/terryma/vim-multiple-cursors' " CTRL + N for multiple cursors
Plug 'https://github.com/neoclide/coc.nvim' " AutoComplete
Plug 'https://github.com/tomlion/vim-solidity' "Solidity
Plug 'https://github.com/MaxMEllon/vim-jsx-pretty' " React
call plug#end()
nnoremap <C-f> :NERDTreeFocus<CR>
nnoremap <C-n> :NERDTree<CR>
nnoremap <C-t> :NERDTreeToggle<CR>
:colorscheme jellybeans
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment