Switched to neovim
This commit is contained in:
parent
6a4ea92f40
commit
48e3d606d0
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
|
@ -0,0 +1 @@
|
|||
Subproject commit b9dd9096a34c1d720878f0058dc3e68f9e9c87ea
|
1
nvim/.nvim/plugged/ctrlp-py-matcher
Submodule
1
nvim/.nvim/plugged/ctrlp-py-matcher
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 9e84cf8072866b92faf5082cb93a554b75e35fd0
|
1
nvim/.nvim/plugged/ctrlp.vim
Submodule
1
nvim/.nvim/plugged/ctrlp.vim
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit b5d3fe66a58a13d2ff8b6391f4387608496a030f
|
1
nvim/.nvim/plugged/delimitMate
Submodule
1
nvim/.nvim/plugged/delimitMate
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit d24ad6b301685cd3b9278420248cc780fdc8fc59
|
1
nvim/.nvim/plugged/gruvbox
Submodule
1
nvim/.nvim/plugged/gruvbox
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 273c030ede00f3d6c54207346dabf7e35904cf57
|
1
nvim/.nvim/plugged/indentLine
Submodule
1
nvim/.nvim/plugged/indentLine
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit efce4fa4a48c3060dcf2173e099a2bf52d727225
|
1
nvim/.nvim/plugged/nerdtree
Submodule
1
nvim/.nvim/plugged/nerdtree
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 86e2e40af161e65a3ad671214f16f23af360a5a7
|
1
nvim/.nvim/plugged/tabular
Submodule
1
nvim/.nvim/plugged/tabular
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 60f25648814f0695eeb6c1040d97adca93c4e0bb
|
1
nvim/.nvim/plugged/tagbar
Submodule
1
nvim/.nvim/plugged/tagbar
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 7b36c46d17d57db34fdb0adac9ba6382d0bb5e66
|
1
nvim/.nvim/plugged/tcomment_vim
Submodule
1
nvim/.nvim/plugged/tcomment_vim
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit d445d1a3d7de66923fa4297fd71f8f14f667d340
|
1
nvim/.nvim/plugged/vim-airline
Submodule
1
nvim/.nvim/plugged/vim-airline
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit cdc6d98a09db60d3dda58815616f78338cbdaa9d
|
1
nvim/.nvim/plugged/vim-exchange
Submodule
1
nvim/.nvim/plugged/vim-exchange
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit f8f96d83ceeb048bef002a2e79ec061ce343d0eb
|
1
nvim/.nvim/plugged/vim-matchparenalways
Submodule
1
nvim/.nvim/plugged/vim-matchparenalways
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 8fe259720a96d4930696d8497be0d89657125990
|
1
nvim/.nvim/plugged/vim-surround
Submodule
1
nvim/.nvim/plugged/vim-surround
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 772ab9587b7d1e2c3bae75395c9123803059ba8a
|
1
nvim/.nvim/plugged/vim-tmux-navigator
Submodule
1
nvim/.nvim/plugged/vim-tmux-navigator
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 176452ead44118174ddad3502709a247d9c24bb4
|
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
|
||||
alias cl="clear"
|
||||
alias v="vim"
|
||||
alias vim="nvim"
|
||||
alias tmux="tmux -2"
|
||||
alias attach="tmux a"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user