2017-02-14 20:51:44 +01:00
|
|
|
" Specify a directory for plugins (for Neovim: ~/.local/share/nvim/plugged)
|
|
|
|
call plug#begin('~/.config/nvim/plugged')
|
|
|
|
|
|
|
|
" Neomake build tool
|
|
|
|
Plug 'benekastah/neomake'
|
|
|
|
" Automatically match brackets as you type
|
|
|
|
Plug 'Raimondi/delimitMate'
|
2017-10-19 11:12:12 +02:00
|
|
|
" Tab completion
|
|
|
|
Plug 'ervandew/supertab'
|
2017-02-14 20:51:44 +01:00
|
|
|
" Haskell
|
|
|
|
Plug 'neovimhaskell/haskell-vim', { 'for': [ 'haskell', 'cabal' ] }
|
2017-10-19 11:12:12 +02:00
|
|
|
Plug 'alx741/vim-hindent'
|
2017-02-14 20:51:44 +01:00
|
|
|
" Lisp
|
|
|
|
Plug 'vim-scripts/paredit.vim', { 'for': [ 'scheme', 'lisp', 'commonlisp' ] }
|
|
|
|
" LaTeX Editing
|
|
|
|
Plug 'LaTeX-Box-Team/LaTeX-Box'
|
|
|
|
" EasyMotion - Allows <leader><leader>(b|e) to jump to (b)eginning or (end)
|
|
|
|
" of words.
|
|
|
|
Plug 'easymotion/vim-easymotion'
|
|
|
|
" Ctrl-P - Fuzzy file search
|
|
|
|
Plug 'kien/ctrlp.vim'
|
|
|
|
" Remove extraneous whitespace when edit mode is exited
|
|
|
|
Plug 'thirtythreeforty/lessspace.vim'
|
|
|
|
" Status bar mods
|
|
|
|
Plug 'bling/vim-airline'
|
|
|
|
Plug 'airblade/vim-gitgutter'
|
|
|
|
" Manage Project sessions
|
2017-10-19 11:12:12 +02:00
|
|
|
Plug 'tpope/vim-obsession'
|
|
|
|
Plug 'dhruvasagar/vim-prosession'
|
2017-02-14 20:51:44 +01:00
|
|
|
" Explore filesystem
|
|
|
|
Plug 'scrooloose/nerdtree'
|
|
|
|
" Tags
|
|
|
|
Plug 'universal-ctags/ctags'
|
2017-02-15 10:23:41 +01:00
|
|
|
" Commenter
|
|
|
|
Plug 'scrooloose/nerdcommenter'
|
|
|
|
" Theme
|
|
|
|
Plug 'sickill/vim-monokai'
|
2017-10-19 11:12:12 +02:00
|
|
|
" Auto Completion with Deoplete
|
|
|
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
|
|
" Autocomplete for Python
|
|
|
|
Plug 'zchee/deoplete-jedi'
|
|
|
|
" Autocomplete for Rust
|
|
|
|
Plug 'sebastianmarkow/deoplete-rust'
|
|
|
|
Plug 'rust-lang/rust.vim'
|
2017-02-14 20:51:44 +01:00
|
|
|
|
|
|
|
" Initialize plugin system
|
|
|
|
call plug#end()
|
|
|
|
|
|
|
|
syntax on
|
2017-10-19 11:12:12 +02:00
|
|
|
filetype plugin indent on
|
2017-02-14 20:51:44 +01:00
|
|
|
|
|
|
|
" Don't mess up undo history
|
|
|
|
let g:jedi#show_call_signatures = "0"
|
|
|
|
|
|
|
|
" Highlight 80th column
|
|
|
|
set colorcolumn=80
|
|
|
|
" Always show status bar
|
|
|
|
set laststatus=2
|
|
|
|
" Let plugins show effects after 500ms, not 4s
|
|
|
|
set updatetime=500
|
|
|
|
" Disable mouse click to go to position
|
|
|
|
set mouse-=a
|
|
|
|
" Don't let autocomplete affect usual typing habits
|
|
|
|
set completeopt=menuone,preview,noinsert
|
|
|
|
" Let vim-gitgutter do its thing on large files
|
|
|
|
let g:gitgutter_max_signs=10000
|
|
|
|
|
|
|
|
" Set up leaders
|
|
|
|
let mapleader="\<SPACE>"
|
|
|
|
|
|
|
|
set encoding=utf-8
|
|
|
|
set showcmd " Show (partial) command in status line.
|
|
|
|
set showmatch " Show matching brackets.
|
|
|
|
set showmode " Show current mode.
|
|
|
|
set ruler " Show the line and column numbers of the cursor.
|
|
|
|
set number " Show the line numbers on the left side.
|
|
|
|
set formatoptions+=o " Continue comment marker in new lines.
|
|
|
|
set textwidth=0 " Hard-wrap long lines as you type them.
|
|
|
|
set tabstop=4 " Render TABs using this many spaces.
|
2017-02-18 12:30:11 +01:00
|
|
|
set shiftwidth=4 " Indentation amount for < and > commands.
|
2017-02-14 20:51:44 +01:00
|
|
|
|
|
|
|
set noerrorbells " No beeps.
|
|
|
|
set modeline " Enable modeline.
|
|
|
|
set linespace=0 " Set line-spacing to minimum.
|
|
|
|
set nojoinspaces " Prevents inserting two spaces after punctuation on a join (J)
|
|
|
|
|
|
|
|
" More natural splits
|
|
|
|
set splitbelow " Horizontal split below current.
|
|
|
|
set splitright " Vertical split to right of current.
|
|
|
|
|
|
|
|
if !&scrolloff
|
|
|
|
set scrolloff=3 " Show next 3 lines while scrolling.
|
|
|
|
endif
|
|
|
|
if !&sidescrolloff
|
|
|
|
set sidescrolloff=5 " Show next 5 columns while side-scrolling.
|
|
|
|
endif
|
|
|
|
set nostartofline " Do not jump to first character with page commands.
|
|
|
|
|
|
|
|
set ignorecase " Make searching case insensitive
|
|
|
|
set smartcase " ... unless the query has capital letters.
|
|
|
|
set gdefault " Use 'g' flag by default with :s/foo/bar/.
|
|
|
|
set magic " Use 'magic' patterns (extended regular expressions).
|
|
|
|
|
|
|
|
" Use <C-L> to clear the highlighting of :set hlsearch.
|
|
|
|
if maparg('<C-L>', 'n') ==# ''
|
|
|
|
nnoremap <silent> <C-L> :nohlsearch<CR><C-L>
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Search and Replace
|
|
|
|
nmap <Leader>s :%s//g<Left><Left>
|
|
|
|
|
2017-03-29 13:05:42 +02:00
|
|
|
"nnoremap ; : " Use ; for commands.
|
|
|
|
"nnoremap Q @q " Use Q to execute default register.
|
2017-02-14 20:51:44 +01:00
|
|
|
|
|
|
|
" Open file menu
|
|
|
|
nnoremap <Leader>o :CtrlP<CR>
|
|
|
|
" Open buffer menu
|
|
|
|
nnoremap <Leader>b :CtrlPBuffer<CR>
|
|
|
|
" Open most recently used files
|
|
|
|
nnoremap <Leader>f :CtrlPMRUFiles<CR>
|
|
|
|
" Open NerdTree
|
|
|
|
nnoremap <Leader>n :NERDTree<CR>
|
|
|
|
|
|
|
|
" Manage splits
|
|
|
|
set splitbelow
|
|
|
|
set splitright
|
|
|
|
nnoremap <Leader>w <c-w>w
|
|
|
|
|
2017-02-15 10:23:41 +01:00
|
|
|
" Theme
|
|
|
|
syntax enable
|
|
|
|
colorscheme monokai
|
|
|
|
|
2017-02-18 12:30:11 +01:00
|
|
|
" Key Bindings to help with terminal mode
|
2017-08-04 13:08:35 +02:00
|
|
|
:tnoremap <Esc> <C-\><C-n>
|
2017-10-19 11:12:12 +02:00
|
|
|
" Key bindings to move between window splits
|
|
|
|
nnoremap <A-h> <C-w>h
|
|
|
|
nnoremap <A-j> <C-w>j
|
|
|
|
nnoremap <A-k> <C-w>k
|
|
|
|
nnoremap <A-l> <C-w>l
|
2017-02-18 12:30:11 +01:00
|
|
|
|
2017-03-29 13:05:42 +02:00
|
|
|
" Disable Arrow Keys
|
|
|
|
inoremap <Up> <NOP>
|
|
|
|
inoremap <Down> <NOP>
|
|
|
|
inoremap <Left> <NOP>
|
|
|
|
inoremap <Right> <NOP>
|
|
|
|
noremap <Up> <NOP>
|
|
|
|
noremap <Down> <NOP>
|
|
|
|
noremap <Left> <NOP>
|
|
|
|
noremap <Right> <NOP>
|
|
|
|
|
2017-02-18 12:30:11 +01:00
|
|
|
" For Haskell
|
2017-10-19 11:12:12 +02:00
|
|
|
let g:haskell_indent_disable = 1 " to disabled indentation
|
2017-02-18 12:30:11 +01:00
|
|
|
let g:haskell_enable_quantification = 1 " to enable highlighting of `forall`
|
|
|
|
let g:haskell_enable_recursivedo = 1 " to enable highlighting of `mdo` and `rec`
|
|
|
|
let g:haskell_enable_arrowsyntax = 1 " to enable highlighting of `proc`
|
|
|
|
let g:haskell_enable_pattern_synonyms = 1 " to enable highlighting of `pattern`
|
|
|
|
let g:haskell_enable_typeroles = 1 " to enable highlighting of type roles
|
|
|
|
let g:haskell_enable_static_pointers = 1 " to enable highlighting of `static`
|
|
|
|
let g:haskell_backpack = 1 " to enable highlighting of backpack keywords
|
2017-10-19 11:12:12 +02:00
|
|
|
let g:hindent_on_save = 1
|
|
|
|
let g:hindent_indent_size = 4
|
|
|
|
let g:hindent_line_length = 80
|
|
|
|
|
|
|
|
" For Rust
|
|
|
|
let g:deoplete#sources#rust#racer_binary='/home/sanchayan/.cargo/bin/racer'
|
|
|
|
let g:deoplete#sources#rust#rust_source_path='/home/sanchayan/GitSources/rust/src'
|
|
|
|
|
|
|
|
" Use deoplete.
|
|
|
|
let g:deoplete#enable_at_startup = 1
|
|
|
|
let g:deoplete#enable_smart_case = 1
|
2017-02-18 12:30:11 +01:00
|
|
|
|
2017-02-14 20:51:44 +01:00
|
|
|
let g:airline#extensions#tabline#enabled = 2
|
|
|
|
let g:airline#extensions#tabline#fnamemod = ':t'
|
|
|
|
let g:airline#extensions#tabline#left_sep = ' '
|
|
|
|
let g:airline#extensions#tabline#left_alt_sep = '|'
|
|
|
|
let g:airline#extensions#tabline#right_sep = ' '
|
|
|
|
let g:airline#extensions#tabline#right_alt_sep = '|'
|
|
|
|
let g:airline_left_sep = ' '
|
|
|
|
let g:airline_left_alt_sep = '|'
|
|
|
|
let g:airline_right_sep = ' '
|
|
|
|
let g:airline_right_alt_sep = '|'
|