Skip to content

Commit

Permalink
a few changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Cosson committed Apr 10, 2018
1 parent b936b8f commit 77d41e7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ au BufRead,BufNewFile {Capfile,Gemfile,Rakefile,Vagrantfile,Thorfile,config.ru,.
au BufRead,BufNewFile {*.less,*.sass} set ft=css
au BufRead,BufNewFile *.us set ft=html "our underscore.js html templates
au BufRead,BufNewFile {*.tfstate,*.tfstate.backup} set ft=json
au BufRead,BufNewFile {Jenkinsfile} set ft=groovy

" Open useful sidebars (taglist, nerdtree), and navigation tools
nnoremap ,w :TlistToggle<CR>
Expand Down Expand Up @@ -255,6 +256,15 @@ let g:airline_section_error = airline#section#create_right(['ALE'])
nmap <Leader>e :ALENextWrap<CR>
nmap <Leader>E :ALEPreviousWrap<CR>
" Airline perf fix
" make Esc happen without waiting for timeoutlen
" fixes Powerline delay
augroup FastEscape
autocmd!
au InsertEnter * set timeoutlen=0
au InsertLeave * set timeoutlen=1000
augroup END


" """
" """ Neoformat options
Expand Down

0 comments on commit 77d41e7

Please sign in to comment.