Skip to content

Instantly share code, notes, and snippets.

@masiamj
Last active May 30, 2019 20:20
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 masiamj/313bdfefe12112ace5c364ec4692b521 to your computer and use it in GitHub Desktop.
Save masiamj/313bdfefe12112ace5c364ec4692b521 to your computer and use it in GitHub Desktop.
GR Vim Config
set nocompatible " be iMproved, required
filetype off " required
syntax on
set rtp+=~/.vim/bundle/Vundle.vim
set noswapfile
set number
set noshowmode
call vundle#begin()
" Colors
Plugin 'https://github.com/rakr/vim-one'
" Clojure
"Plugin 'eraserhd/parinfer-rust'
Plugin 'VundleVim/Vundle.vim'
Plugin 'https://github.com/tpope/vim-fireplace'
Plugin 'https://github.com/guns/vim-clojure-static'
Plugin 'https://github.com/tpope/vim-classpath'
Plugin 'https://github.com/tpope/vim-salve'
Plugin 'https://github.com/tpope/vim-surround'
Plugin 'https://github.com/venantius/vim-cljfmt'
Plugin 'https://github.com/fbeline/kibit-vim'
Plugin 'https://github.com/kien/rainbow_parentheses.vim'
Plugin 'https://github.com/scrooloose/nerdtree'
Plugin 'https://github.com/vim-syntastic/syntastic'
Plugin 'https://github.com/rking/ag.vim'
Plugin 'https://github.com/kien/ctrlp.vim'
Plugin 'itchyny/lightline.vim'
call vundle#end() " required
filetype plugin indent on " required
" Options
map <C-n> :NERDTreeToggle<CR>
let NERDTreeQuitOnOpen = 1
" Syntastic
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
set laststatus=2
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:one_allow_italics = 1
let g:ag_working_path_mode="r"
" True color support
if (empty($TMUX))
if (has("nvim"))
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
endif
if (has("termguicolors"))
set termguicolors
endif
endif
colorscheme one
set background=dark
set t_8b=^[[48;2;%lu;%lu;%lum
set t_8f=^[[38;2;%lu;%lu;%lum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment