Switched to neovim
This commit is contained in:
4
nvim/.nvim/.netrwhist
Normal file
4
nvim/.nvim/.netrwhist
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
let g:netrw_dirhistmax =10
|
||||||
|
let g:netrw_dirhist_cnt =2
|
||||||
|
let g:netrw_dirhist_1='/home/tim/.nvim'
|
||||||
|
let g:netrw_dirhist_2='/home/tim/.dotfiles/nvim/.nvim'
|
||||||
2018
nvim/.nvim/autoload/plug.vim
Normal file
2018
nvim/.nvim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load Diff
22
nvim/.nvim/compiler/gradle.vim
Normal file
22
nvim/.nvim/compiler/gradle.vim
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
" Vim Compiler File
|
||||||
|
" Compiler: gradle
|
||||||
|
|
||||||
|
if exists("current_compiler")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
let current_compiler = "gradle"
|
||||||
|
|
||||||
|
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
||||||
|
command -nargs=* CompilerSet setlocal <args>
|
||||||
|
endif
|
||||||
|
|
||||||
|
CompilerSet makeprg=gradle
|
||||||
|
|
||||||
|
CompilerSet errorformat=
|
||||||
|
\%-G:%.%\\+,
|
||||||
|
\%E%f:\ %\\d%\\+:\ %m\ @\ line\ %l\\,\ column\ %c.,%-C%.%#,%Z%p^,
|
||||||
|
\%E%>%f:\ %\\d%\\+:\ %m,%C\ @\ line\ %l\\,\ column\ %c.,%-C%.%#,%Z%p^,
|
||||||
|
\%-G\\s%#,
|
||||||
|
\%-GBUILD\ SUCCESSFUL#,
|
||||||
|
\%-GTotal\ \time:\ %.%#
|
||||||
|
|
||||||
1
nvim/.nvim/plugged/YouCompleteMe
Submodule
1
nvim/.nvim/plugged/YouCompleteMe
Submodule
Submodule nvim/.nvim/plugged/YouCompleteMe added at b9dd9096a3
1
nvim/.nvim/plugged/ctrlp-py-matcher
Submodule
1
nvim/.nvim/plugged/ctrlp-py-matcher
Submodule
Submodule nvim/.nvim/plugged/ctrlp-py-matcher added at 9e84cf8072
1
nvim/.nvim/plugged/ctrlp.vim
Submodule
1
nvim/.nvim/plugged/ctrlp.vim
Submodule
Submodule nvim/.nvim/plugged/ctrlp.vim added at b5d3fe66a5
1
nvim/.nvim/plugged/delimitMate
Submodule
1
nvim/.nvim/plugged/delimitMate
Submodule
Submodule nvim/.nvim/plugged/delimitMate added at d24ad6b301
1
nvim/.nvim/plugged/gruvbox
Submodule
1
nvim/.nvim/plugged/gruvbox
Submodule
Submodule nvim/.nvim/plugged/gruvbox added at 273c030ede
1
nvim/.nvim/plugged/indentLine
Submodule
1
nvim/.nvim/plugged/indentLine
Submodule
Submodule nvim/.nvim/plugged/indentLine added at efce4fa4a4
1
nvim/.nvim/plugged/nerdtree
Submodule
1
nvim/.nvim/plugged/nerdtree
Submodule
Submodule nvim/.nvim/plugged/nerdtree added at 86e2e40af1
1
nvim/.nvim/plugged/tabular
Submodule
1
nvim/.nvim/plugged/tabular
Submodule
Submodule nvim/.nvim/plugged/tabular added at 60f2564881
1
nvim/.nvim/plugged/tagbar
Submodule
1
nvim/.nvim/plugged/tagbar
Submodule
Submodule nvim/.nvim/plugged/tagbar added at 7b36c46d17
1
nvim/.nvim/plugged/tcomment_vim
Submodule
1
nvim/.nvim/plugged/tcomment_vim
Submodule
Submodule nvim/.nvim/plugged/tcomment_vim added at d445d1a3d7
1
nvim/.nvim/plugged/vim-airline
Submodule
1
nvim/.nvim/plugged/vim-airline
Submodule
Submodule nvim/.nvim/plugged/vim-airline added at cdc6d98a09
1
nvim/.nvim/plugged/vim-exchange
Submodule
1
nvim/.nvim/plugged/vim-exchange
Submodule
Submodule nvim/.nvim/plugged/vim-exchange added at f8f96d83ce
1
nvim/.nvim/plugged/vim-matchparenalways
Submodule
1
nvim/.nvim/plugged/vim-matchparenalways
Submodule
Submodule nvim/.nvim/plugged/vim-matchparenalways added at 8fe259720a
1
nvim/.nvim/plugged/vim-surround
Submodule
1
nvim/.nvim/plugged/vim-surround
Submodule
Submodule nvim/.nvim/plugged/vim-surround added at 772ab9587b
1
nvim/.nvim/plugged/vim-tmux-navigator
Submodule
1
nvim/.nvim/plugged/vim-tmux-navigator
Submodule
Submodule nvim/.nvim/plugged/vim-tmux-navigator added at 176452ead4
64
nvim/.nvimrc
Normal file
64
nvim/.nvimrc
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
call plug#begin('~/.dotfiles/nvim/.nvim/plugged')
|
||||||
|
Plug 'kien/ctrlp.vim'
|
||||||
|
Plug 'FelikZ/ctrlp-py-matcher'
|
||||||
|
Plug 'Raimondi/delimitMate'
|
||||||
|
Plug 'morhetz/gruvbox'
|
||||||
|
Plug 'Yggdroot/indentLine'
|
||||||
|
Plug 'scrooloose/nerdtree'
|
||||||
|
Plug 'godlygeek/tabular'
|
||||||
|
Plug 'majutsushi/tagbar'
|
||||||
|
Plug 'tomtom/tcomment_vim'
|
||||||
|
Plug 'bling/vim-airline'
|
||||||
|
Plug 'tommcdo/vim-exchange'
|
||||||
|
Plug 'justinmk/vim-matchparenalways'
|
||||||
|
Plug 'tpope/vim-surround'
|
||||||
|
Plug 'christoomey/vim-tmux-navigator'
|
||||||
|
Plug 'Valloric/YouCompleteMe'
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
|
let g:neomake_airline=1
|
||||||
|
|
||||||
|
let g:ctrlp_match_func = { 'match': 'pymatcher#PyMatch' }
|
||||||
|
let g:ctrlp_custom_ignore = '\v[\/](build|bin)$'
|
||||||
|
|
||||||
|
let delimitMate_expand_cr = 1
|
||||||
|
|
||||||
|
colorscheme gruvbox
|
||||||
|
set t_Co=256
|
||||||
|
set t_ZH=[3m
|
||||||
|
set t_ZR=[23m
|
||||||
|
set background=dark
|
||||||
|
|
||||||
|
let g:indentLine_char = '│'
|
||||||
|
|
||||||
|
map <silent> <M-a> :NERDTreeToggle<cr>
|
||||||
|
|
||||||
|
map <silent> <M-2> :TagbarToggle<cr>
|
||||||
|
|
||||||
|
let g:airline_powerline_fonts = 1
|
||||||
|
let g:airline#extensions#tabline#enabled = 1
|
||||||
|
let g:airline_theme='gruvbox'
|
||||||
|
|
||||||
|
map <M-l> :TmuxNavigateLeft<cr>
|
||||||
|
map <M-j> :TmuxNavigateDown<cr>
|
||||||
|
map <M-k> :TmuxNavigateUp<cr>
|
||||||
|
map <M-l> :TmuxNavigateRight<cr>
|
||||||
|
|
||||||
|
syntax on
|
||||||
|
filetype plugin indent on
|
||||||
|
|
||||||
|
set smartindent
|
||||||
|
set number
|
||||||
|
set relativenumber
|
||||||
|
set laststatus=2
|
||||||
|
set softtabstop=4
|
||||||
|
set shiftwidth=4
|
||||||
|
set noexpandtab
|
||||||
|
|
||||||
|
map <silent> <tab> :bn<cr>
|
||||||
|
map <silent> <S-tab> :bp<cr>
|
||||||
|
|
||||||
|
map <S-J> <pagedown>
|
||||||
|
map <S-K> <pageup>
|
||||||
|
|
||||||
|
map <F9> :Topen gradle build<cr>
|
||||||
@@ -16,7 +16,7 @@ export TERM="screen-256color"
|
|||||||
|
|
||||||
#setting aliases
|
#setting aliases
|
||||||
alias cl="clear"
|
alias cl="clear"
|
||||||
alias v="vim"
|
alias vim="nvim"
|
||||||
alias tmux="tmux -2"
|
alias tmux="tmux -2"
|
||||||
alias attach="tmux a"
|
alias attach="tmux a"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user