View vimconf.sh
#!/usr/bin/env bash | |
#shelly for basic vim config | |
#install pathogen | |
mkdir -p ~/.vim/autoload ~/.vim/bundle && \ | |
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim | |
#install plugins | |
git clone https://github.com/kien/ctrlp.vim.git ~/.vim/bundle |
View .vimrc
execute pathogen#infect() | |
filetype plugin indent on | |
syntax enable | |
colorscheme Mustang | |
map <C-n> :NERDTreeToggle<CR> | |
nmap <C-a> :set invnumber<CR> | |
set showmode " always show what mode we're currently editing in | |
set nowrap " don't wrap lines | |
set tabstop=4 " a tab is four spaces |
View Mustang.vim
set background=dark | |
hi clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
let colors_name = "mustang" |