sickleaf / dotfiles

dotfiles(mainly for vim settings)
0 stars 0 forks source link

vimrc #1

Open sickleaf opened 4 years ago

sickleaf commented 4 years ago

syntax on set number set encoding=utf-8 set smartindent set cursorline set clipboard=unnamed,autoselect set background=dark

colorscheme molokai set t_Co=256

:command! RC :source $MYVIMRC

inoremap inoremap

noremap b noremap w

let IM_CtrlMode = 4

inoremap <C-^>=IMState('FixMode')

if filereadable($HOME . '.vimrc.local') source $HOME/.vimrc.local endif

let g:neobundle_default_git_protocol='https'

"au FileType text setlocal fildmethod=marker set foldmethod=syntax set foldcolumn=1 let javaScript_fold=1 set foldlevelstart=1

sickleaf commented 4 years ago
set number syntax enable set clipboard=unnamed,autoselect "set background=dark "colorscheme solarized inoremap if filereadable($HOME . '.vimrc.local') source $HOME/.vimrc.local endif "vim-go "let g:go_fmt_command = "goimports" "let g:go_version_warning = 0 :command! RC :source $MYVIMRC if &compatible set nocompatible " Be iMproved endif "Required: set runtimepath+=/home/~~/ " Required: call neobundle#begin(expand('/home/~~/.vim/bundle')) " Let NeoBundle manage NeoBundle " Required: NeoBundleFetch 'Shougo/neobundle.vim' " Add or remove your Bundles here: NeoBundle 'Shougo/neosnippet.vim' NeoBundle 'Shougo/neomru.vim' NeoBundle 'Shougo/neosnippet-snippets' NeoBundle 'tpope/vim-fugitive' NeoBundle 'ctrlpvim/ctrlp.vim' NeoBundle 'flazz/vim-colorschemes' NeoBundle 'altercation/vim-colors-solarized' NeoBundle 'Shougo/vimfiler.git' NeoBundle 'Yggdroot/indentLine' NeoBundle 'plasticboy/vim-markdown' NeoBundle 'jiangmiao/auto-pairs' NeoBundle 'fatih/vim-go' "NeoBundle 'SirVer/ultisnips' " You can specify revision/branch/tag. NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' } " Required: call neobundle#end() " Required: filetype plugin indent on " If there are uninstalled bundles found on startup, " this will conveniently prompt you to install them. NeoBundleCheck