Compare commits

..

No commits in common. "e0f63d9e619c94fb4c4ad8c093964cf449e3cca1" and "a9890cc3fc9957348d3f3325d41a47f1df437798" have entirely different histories.

2 changed files with 0 additions and 15 deletions

View File

@ -7,9 +7,6 @@ call plug#begin('~/.vim/plugged')
"Plug 'tpope/vim-surround' "Plug 'tpope/vim-surround'
" Line numbers
Plug 'myusuf3/numbers.vim'
" File explorer window " File explorer window
Plug 'scrooloose/nerdtree' Plug 'scrooloose/nerdtree'

12
.vimrc
View File

@ -1,8 +1,6 @@
color desert color desert
syntax on syntax on
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
so ~/.vim/plugins.vim so ~/.vim/plugins.vim
set splitbelow set splitbelow
@ -39,13 +37,3 @@ set hidden
nnoremap <C-N> :bnext<CR> nnoremap <C-N> :bnext<CR>
nnoremap <C-P> :bprev<CR> nnoremap <C-P> :bprev<CR>
" leave insert mode quickly
if ! has('gui_running')
set ttimeoutlen=10
augroup FastEscape
autocmd!
au InsertEnter * set timeoutlen=0
au InsertLeave * set timeoutlen=1000
augroup END
endif