Skip to content

Instantly share code, notes, and snippets.

@unsign3d
Last active August 29, 2015 14:27
Show Gist options
  • Save unsign3d/d0bd5f1f327ba4ce5c9c to your computer and use it in GitHub Desktop.
Save unsign3d/d0bd5f1f327ba4ce5c9c to your computer and use it in GitHub Desktop.
set nocompatible
set runtimepath+=~/.nvim/bundle/neobundle.vim/
call neobundle#begin(expand('~/.nvim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'tpope/vim-fugitive'
NeoBundle 'sheerun/vim-polyglot'
NeoBundle 'tpope/vim-sensible'
NeoBundle 'mhinz/vim-signify'
NeoBundle 'bronson/vim-trailing-whitespace'
NeoBundle 'mattn/webapi-vim'
NeoBundle 'mattn/gist-vim'
NeoBundle 'kien/tabman.vim'
NeoBundle 'kien/ctrlp.vim'
NeoBundle 'vim-scripts/TaskList.vim'
NeoBundle 'itchyny/lightline.vim'
NeoBundle 'myusuf3/numbers.vim'
NeoBundle 'majutsushi/tagbar'
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'tpope/vim-surround'
NeoBundle 'nsf/gocode'
NeoBundle 'fatih/vim-go'
NeoBundle 'rizzatti/dash.vim'
NeoBundle 'Valloric/YouCompleteMe'
call neobundle#end()
NeoBundleCheck
filetype plugin indent on
syntax on
set number
colorscheme darkblood
set autoindent
set smartindent
set expandtab
set tabstop=4
set ruler
set cmdheight=1
set tildeop
set showcmd
set fileencodings=utf-8
set encoding=utf-8
set statusline=%F%m%r%h%w\ [Type:\ %Y]\ [Lines:\ %L\ @\ %p%%\ {%l;%v}]
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
let g:molokai_original = 1
let g:rehash256 = 1
let g:go_highlight_functions = 1
let g:go_highlight_methods = 1
let g:go_highlight_structs = 1
let g:go_highlight_operators = 1
let g:go_highlight_build_constraints = 1
let g:go_fmt_command = "goimports"
let g:go_fmt_fail_silently = 1
inoremap <Up> <Nop>
inoremap <Down> <Nop>
inoremap <Left> <Nop>
inoremap <Right> <Nop>
noremap <Up> <Nop>
noremap <Down> <Nop>
noremap <Left> <Nop>
noremap <Right> <Nop>
map <C-t> :tabnew<CR>
map <C-w> :tabclose<CR>
nnoremap <C-h> :wincmd h<CR>
nnoremap <C-j> :wincmd j<CR>
nnoremap <C-k> :wincmd k<CR>
nnoremap <C-l> :wincmd l<CR>
nmap <Leader>D :TaskList<CR>
nmap <Leader>T :TagbarToggle<CR>
nmap <Leader>n :NERDTreeToggle<CR>
nmap <Leader>N :NumbersToggle<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment