Skip to content

Instantly share code, notes, and snippets.

@samdoiron
Created January 29, 2018 18:26
Show Gist options
  • Save samdoiron/cfdf0524698dd77bc43827be3db0a633 to your computer and use it in GitHub Desktop.
Save samdoiron/cfdf0524698dd77bc43827be3db0a633 to your computer and use it in GitHub Desktop.
call plug#begin('~/.local/share/nvim/plugged')
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
Plug 'mhartington/oceanic-next'
Plug 'neomake/neomake'
Plug 'easymotion/vim-easymotion'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'cespare/vim-toml'
Plug 'editorconfig/editorconfig-vim'
Plug 'junegunn/fzf'
Plug 'ervandew/supertab'
Plug 'sheerun/vim-polyglot'
Plug 'effkay/argonaut.vim'
Plug 'keith/swift.vim'
" Initialize plugin system
call plug#end()
syntax enable
colorscheme OceanicNext
let mapleader = ","
nnoremap <leader>e = :e! ~/.config/nvim/init.vim<cr>
nnoremap <leader>bd = :bdelete<cr>
nnoremap <C-h> <C-w>h
nnoremap <C-l> <C-w>l
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap H :bprev<cr>
nnoremap L :bnext<cr>
nnoremap <C-f> :FZF<cr>
call neomake#configure#automake()
let g:EditorConfig_exec_path = '/usr/local/bin/editorconfig'
set number
let $FZF_DEFAULT_COMMAND = 'rg -l ""'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment