Skip to content

Instantly share code, notes, and snippets.

@jtopgi
Last active August 29, 2019 00:19
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 jtopgi/03cb9480984ac7b44233a19cd6b72b29 to your computer and use it in GitHub Desktop.
Save jtopgi/03cb9480984ac7b44233a19cd6b72b29 to your computer and use it in GitHub Desktop.
call plug#begin()
Plug 'scrooloose/nerdtree'
Plug 'airblade/vim-gitgutter'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'tpope/vim-fugitive'
Plug 'chaoren/vim-wordmotion'
Plug 'blueyed/vim-diminactive'
Plug 'neoclide/coc.nvim', {'tag': '*', 'do': { -> coc#util#install()}}
Plug 'ervandew/supertab'
"Plug 'timeyyy/orchestra.nvim'
"Plug 'timeyyy/clackclack.symphony'
call plug#end()
"call orchestra#prelude()
"call orchestra#set_tune('clackclack')
autocmd vimenter * NERDTree
set clipboard+=unnamedplus
let g:SuperTabDefaultCompletionType = "<c-n>"
let g:NERDTreeWinSize=40
set mouse=a
let g:NERDTreeMouseMode=3
let g:airline_section_x=''
let g:airline_section_y=''
let g:airline_section_z = '%l:%c'
let g:airline_skip_empty_sections = 1
let g:airline#extensions#whitespace#enabled = 0
let g:airline_theme = 'light'
set background=light
set expandtab
set shiftwidth=2
set softtabstop=2
set smartindent
set autoindent
set showcmd
set colorcolumn=80
set number
set foldmethod=indent
set foldlevelstart=99
set encoding=utf-8
autocmd BufWritePre * %s/\s\+$//e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment