Skip to content

Instantly share code, notes, and snippets.

@a-b
Created August 3, 2014 02:49
Show Gist options
  • Save a-b/7c82212ac43b13df0630 to your computer and use it in GitHub Desktop.
Save a-b/7c82212ac43b13df0630 to your computer and use it in GitHub Desktop.
my NeoVim rc file
" vim:fdm=marker
"NeoBundle begin" {{{
if has('vim_starting')
set nocompatible
set runtimepath+=~/.nvim/bundle/neobundle.vim/
endif
call neobundle#begin(expand('~/.nvim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
"}}}
NeoBundle 'bling/vim-airline'
"NeoBundle 'Shougo/neosnippet.vim'
"NeoBundle 'Shougo/neosnippet-snippets'
"NeoBundle 'flazz/vim-colorschemes'
NeoBundle 'airblade/vim-gitgutter'
NeoBundle 'myusuf3/numbers.vim'
NeoBundle 'jeetsukumaran/vim-markology'
NeoBundle 'nonsense/tomorrow-night-vim-theme'
"NeoBundle 'honza/vim-snippets'
NeoBundle 'benmills/vimux'
NeoBundle 'vim-scripts/JSON.vim'
"NeoBundle 'godlygeek/tabular'
"NeoBundle 'mileszs/ack.vim'
NeoBundle 'nelstrom/vim-visual-star-search'
NeoBundle 'tpope/vim-vinegar'
NeoBundle 'junegunn/vim-easy-align'
"NeoBundle 'tommcdo/vim-lion'
"NeoBundle 'edkolev/tmuxline.vim'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'editorconfig/editorconfig-vim'
NeoBundle 'scrooloose/syntastic'
"NeoBundle 'jaxbot/semantic-highlight'
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'scrooloose/nerdcommenter'
NeoBundleLazy 'lambdalisue/vim-gista', {
\ 'depends': [
\ 'Shougo/unite.vim',
\ 'tyru/open-browser.vim',
\ ],
\ 'autoload': {
\ 'commands': ['Gista'],
\ 'mappings': '<Plug>(gista-',
\ 'unite_sources': 'gista',
\}}
"NeoBundle ''
"NeoBundle ''
" NeoBundle end {{{
" You can specify revision/branch/tag.
"NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }
call neobundle#end()
filetype plugin indent on
NeoBundleCheck
"}}}
"Basic" {{{
color Tomorrow-Night
syntax on
let mapleader = ","
let maplocalleader = ","
"}}}
"Plugin specific" {{{
"NerdTree" {{{
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
map <leader>nn :NERDTreeToggle<CR>
map <leader>nf :NERDTreeFind<CR>
"}}}
"Numbers" {{{
set number
"}}}
"Unite" {{{
map <leader>u :Unite<CR>
"}}}
"Gista" {{{
let g:gista#post_private = 1
"}}}
"}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment