Switched to neovim

This commit is contained in:
Dreaded_X 2015-07-22 11:10:19 +02:00
parent 6a4ea92f40
commit 48e3d606d0
20 changed files with 2124 additions and 1 deletions

4
nvim/.nvim/.netrwhist Normal file
View 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

File diff suppressed because it is too large Load Diff

View 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:\ %.%#

@ -0,0 +1 @@
Subproject commit b9dd9096a34c1d720878f0058dc3e68f9e9c87ea

@ -0,0 +1 @@
Subproject commit 9e84cf8072866b92faf5082cb93a554b75e35fd0

@ -0,0 +1 @@
Subproject commit b5d3fe66a58a13d2ff8b6391f4387608496a030f

@ -0,0 +1 @@
Subproject commit d24ad6b301685cd3b9278420248cc780fdc8fc59

@ -0,0 +1 @@
Subproject commit 273c030ede00f3d6c54207346dabf7e35904cf57

@ -0,0 +1 @@
Subproject commit efce4fa4a48c3060dcf2173e099a2bf52d727225

@ -0,0 +1 @@
Subproject commit 86e2e40af161e65a3ad671214f16f23af360a5a7

@ -0,0 +1 @@
Subproject commit 60f25648814f0695eeb6c1040d97adca93c4e0bb

@ -0,0 +1 @@
Subproject commit 7b36c46d17d57db34fdb0adac9ba6382d0bb5e66

@ -0,0 +1 @@
Subproject commit d445d1a3d7de66923fa4297fd71f8f14f667d340

@ -0,0 +1 @@
Subproject commit cdc6d98a09db60d3dda58815616f78338cbdaa9d

@ -0,0 +1 @@
Subproject commit f8f96d83ceeb048bef002a2e79ec061ce343d0eb

@ -0,0 +1 @@
Subproject commit 8fe259720a96d4930696d8497be0d89657125990

@ -0,0 +1 @@
Subproject commit 772ab9587b7d1e2c3bae75395c9123803059ba8a

@ -0,0 +1 @@
Subproject commit 176452ead44118174ddad3502709a247d9c24bb4

64
nvim/.nvimrc Normal file
View 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=
set t_ZR=
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>

View File

@ -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"