clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

add my current vimrc

sspaeti fdb997ea 9a2de5b7

+30
+30
vim/vimrc
··· 1 + syntax on 2 + 3 + 4 + " search related 5 + set hlsearch 6 + set ignorecase 7 + set incsearch 8 + set smartcase 9 + 10 + "general 11 + colorscheme onedark 12 + let mapleader = " " 13 + inoremap jk <ESC> 14 + filetype plugin indent on 15 + 16 + set ruler " show the cursor position all the time 17 + set showcmd " display incomplete commands 18 + set laststatus=2 " Always display the status line 19 + 20 + set number 21 + set numberwidth=5 22 + set relativenumber 23 + 24 + 25 + "plugs to intall 26 + call plug#begin('~/.vim/bundle') 27 + Plug 'christoomey/vim-system-copy' 28 + Plug 'valloric/youcompleteme' 29 + Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw) 30 + call plug#end()