Skip to content

Commit

Permalink
NEOVIM πŸŒˆπŸ‡ΊπŸ‡ΈπŸŽ‰
Browse files Browse the repository at this point in the history
  • Loading branch information
ignu committed May 23, 2017
1 parent a0ddd10 commit bde951d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ vim/bundle
vim/view
vim/.netrwhist
vim/undodir
vim/init.vim
10 changes: 7 additions & 3 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ call plug#begin('~/.vim/bundle')

" New
Plug 'junegunn/vim-github-dashboard'
Plug 'mhinz/vim-startify'
Plug 'mhinz/vim-janah'

" Essentials
Plug 'scrooloose/nerdtree', { 'on': ['NERDTreeToggle', 'NERDTreeFind'] }
Expand Down Expand Up @@ -88,7 +90,7 @@ Plug 'airblade/vim-gitgutter'
call plug#end()

set so=14
set ttymouse=xterm2
"set ttymouse=xterm2

let g:vimrubocop_ignore_warning = 1

Expand Down Expand Up @@ -159,7 +161,7 @@ noremap \ :w<CR>
" save and restore folds when a file is closed and re-opened. ugh.
autocmd BufWinLeave *.* mkview
autocmd BufWinEnter *.* silent loadview
"autocmd BufWinEnter *.* silent loadview


augroup MiscMisc
Expand Down Expand Up @@ -207,7 +209,9 @@ set cursorline

noremap ; :Ag
color blackboard
autocmd ColorScheme janah highlight Normal ctermbg=235
colorscheme janah

set background=dark
if has("persistent_undo")
set undodir=~/.vim/undodir
Expand Down

0 comments on commit bde951d

Please sign in to comment.