Skip to content

Instantly share code, notes, and snippets.

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 mat-mcloughlin/d3456aad54c7ca0d2ecb8cfe379f3bd3 to your computer and use it in GitHub Desktop.
Save mat-mcloughlin/d3456aad54c7ca0d2ecb8cfe379f3bd3 to your computer and use it in GitHub Desktop.
asdasd
1 call plug#begin('~/.vim/plugged')
1
2 Plug 'ctrlpvim/ctrlp.vim'
3 Plug 'flazz/vim-colorschemes'
4 Plug 'tpope/vim-vinegar'
5 Plug 'dmpas/vim-csharp'
6 Plug 'powerline/powerline'
7
8 call plug#end()
9
10 let g:netrw_liststyle=3
11 set swapfile
12 set dir=~/temp/swp
13
14 filetype plugin indent on
15
16 " show existing tab with 4 spaces width
17 set tabstop=4
18 " when indenting with '>', use 4 spaces width
19 set shiftwidth=4
20 " On pressing tab, insert 4 spaces
21 set expandtab
22
23 set relativenumber
24 set number
25 colorscheme Monokai
26
27 " powerline
28 set rtp+=/usr/local/lib/python2.7/dist-packages/powerline/bindings/vim/
29 set laststatus=2
30 set t_Co=256
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment