my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add ruby, eliminate timeout

j3s 2faba5a4 c893b36b

+5 -1
+5 -1
.vimrc
··· 3 3 4 4 " weird defaults 5 5 set tabstop=4 6 - set scrolloff=10 7 6 set shiftwidth=4 7 + set scrolloff=10 8 8 set hlsearch 9 9 set smartcase 10 + set timeoutlen=1000 ttimeoutlen=0 " esc is immediate 10 11 set t_Co=256 " it's 2019 ffs 11 12 set backspace=indent,eol,start 12 13 set wildmode=longest,list,full ··· 49 50 50 51 " mail 51 52 autocmd FileType mail setlocal tw=72 spell spelllang=en 53 + 54 + " ruby 55 + autocmd FileType ruby setlocal shiftwidth=2 softtabstop=2 expandtab