Fix del not working

This commit is contained in:
Rnhmjoj 2014-07-21 03:20:44 +02:00
parent a3856a88ce
commit 4df3ebfd1c

9
vimrc
View File

@ -1,5 +1,5 @@
set rtp+=~/.vim/bundle/vundle/ " Vundle set rtp+=~/.vim/bundle/vundle/ " Vundle
call vundle#rc() " call vundle#rc() "
"" ""
"" Bundles "" Bundles
@ -7,7 +7,7 @@ call vundle#rc()
Bundle "gmarik/vundle" Bundle "gmarik/vundle"
Bundle "kien/ctrlp.vim" Bundle "kien/ctrlp.vim"
Bundle "townk/vim-autoclose" Bundle "townk/vim-autoclose"
Bundle "laktek/distraction-free-writing-vim" Bundle "laktek/distraction-free-writing-vim"
Bundle "tpope/vim-fugitive" Bundle "tpope/vim-fugitive"
Bundle 'jnwhiteh/vim-golang' Bundle 'jnwhiteh/vim-golang'
@ -33,7 +33,7 @@ let g:lightline = {
\"active": { \"active": {
\ "left": [[ "mode", "paste" ], ["fugitive", "filename", "readonly", "ctrlpmark"]], \ "left": [[ "mode", "paste" ], ["fugitive", "filename", "readonly", "ctrlpmark"]],
\ "right": [ ["syntastic", "lineinfo"], ["percent"], ["fileformat", "fileencoding", "filetype"]] \ "right": [ ["syntastic", "lineinfo"], ["percent"], ["fileformat", "fileencoding", "filetype"]]
\ }, \ },
\"component": { \"component": {
\"readonly": '%{&filetype=="help"?"":&readonly?"⭤":""}', \"readonly": '%{&filetype=="help"?"":&readonly?"⭤":""}',
\"modified": '%{&filetype=="help"?"":&modified?"+":&modifiable?"":"-"}' \"modified": '%{&filetype=="help"?"":&modified?"+":&modifiable?"":"-"}'
@ -105,6 +105,7 @@ set spell spelllang=it
set nospell " ...solo quando serve set nospell " ...solo quando serve
set nocompatible " Disabilita la compatibilità con vi set nocompatible " Disabilita la compatibilità con vi
set backspace=2 " Fix per il DEL nel terminale
set hidden " Nasconde i buffers set hidden " Nasconde i buffers
set history=1000 " Aumenta la cronologia set history=1000 " Aumenta la cronologia
set incsearch " Ricerca incrementale set incsearch " Ricerca incrementale
@ -264,7 +265,7 @@ function ToggleColorScheme()
set background=dark set background=dark
let g:lightline.colorscheme = "solarized_dark" let g:lightline.colorscheme = "solarized_dark"
endif endif
hi NonText guifg=bg hi NonText guifg=bg
call lightline#init() call lightline#init()
call lightline#colorscheme() call lightline#colorscheme()
call lightline#update() call lightline#update()