Skip to content

Instantly share code, notes, and snippets.

@ciupam
Created April 3, 2020 06:22
Show Gist options
  • Select an option

  • Save ciupam/0cd857120cb4d84ddbd3c8e2f7369146 to your computer and use it in GitHub Desktop.

Select an option

Save ciupam/0cd857120cb4d84ddbd3c8e2f7369146 to your computer and use it in GitHub Desktop.
call plug#begin('~/.config/nvim/plugged/')
Plug 'christoomey/vim-tmux-navigator'
Plug 'tomasiser/vim-code-dark'
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'vim-airline/vim-airline'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
Plug 'jiangmiao/auto-pairs'
call plug#end()
syntax on
set encoding=UTF-8
set smarttab
set cindent
set tabstop=2
set shiftwidth=2
set expandtab
set relativenumber
colorscheme codedark
map <C-n> :NERDTreeToggle %<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment