Created
September 24, 2014 09:59
-
-
Save atlas-comstock/957713d0a3377f3d5144 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"set to auto read when a file is changed from the outside | |
set autoread | |
" Ignore compiled files | |
set wildignore=*.o,*~,*.pyc | |
"Always show current position | |
set ruler | |
" Height of the command bar | |
set cmdheight=2 | |
" A buffer becomes hidden when it is abandoned | |
set hid | |
" Configure backspace so it acts as it should act | |
set backspace=eol,start,indent | |
set whichwrap+=<,>,h,l | |
" Ignore case when searching | |
set ignorecase | |
" When searching try to be smart about cases | |
set smartcase | |
" Highlight search results | |
set hlsearch | |
" Makes search act like search in modern browsers | |
set incsearch | |
" Don't redraw while executing macros (good performance config) | |
set lazyredraw | |
" For regular expressions turn magic on | |
set magic | |
" Show matching brackets when text indicator is over them | |
set showmatch | |
" How many tenths of a second to blink when matching brackets | |
set mat=2 | |
" No annoying sound on errors | |
set noerrorbells | |
set novisualbell | |
set t_vb= | |
set tm=500 | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => Colors and Fonts | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Enable syntax highlighting | |
syntax enable | |
colorscheme torte | |
" Set utf8 as standard encoding and en_US as the standard language | |
set encoding=utf8 | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => Files, backups and undo | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
set backup | |
set backupdir=~/.vim/backup | |
set directory=~/.vim/tmp | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => Text, tab and indent related | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Use spaces instead of tabs | |
set expandtab | |
" Be smart when using tabs ;) | |
set smarttab | |
" 1 tab == 4 spaces | |
set shiftwidth=4 | |
set tabstop=4 | |
" Linebreak on 500 characters | |
set lbr | |
set tw=500 | |
set ai "Auto indent | |
set si "Smart indent | |
set wrap "Wrap lines | |
"""""""""""""""""""""""""""""" | |
" => Visual mode related | |
"""""""""""""""""""""""""""""" | |
" Visual mode pressing * or # searches for the current selection | |
" Super useful! From an idea by Michael Naumann | |
vnoremap <silent> * :call VisualSelection('f')<CR> | |
vnoremap <silent> # :call VisualSelection('b')<CR> | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => Moving around, tabs, windows and buffers | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Return to last edit position when opening files (You want this!) | |
autocmd BufReadPost * | |
\ if line("'\"") > 0 && line("'\"") <= line("$") | | |
\ exe "normal! g`\"" | | |
\ endif | |
" Remember info about open buffers on close | |
set viminfo^=% | |
"""""""""""""""""""""""""""""" | |
" => Status line | |
"""""""""""""""""""""""""""""" | |
" Always show the status line | |
set laststatus=2 | |
"set statusline=%t%h%m%r%=[%b\ 0x%02B]\ \ \ %l,%c%V\ %P | |
set statusline=%2*%n\|%<%*%-.40F%2*\|\ %2*%M\ %3*%=%1*\ %1*%2.6l%2*x%1*%1.9(%c%V%)%2*[%1*%P%2*]%1*%2B | |
set number | |
""""""""""""""""""""""""""""" | |
set cursorline | |
""""""""""""""""""""""""""""" | |
"Sometimes the simplest things are the most valuable. The 2 lines in my .vimrc that are totally indispensable: | |
nore ; : | |
nore , ; | |
"Some fixes for common typos have saved me a surprising amount of time: | |
" | |
":command WQ wq | |
":command Wq wq | |
":command W w | |
":command Q q | |
highlight ExtraWhitespace ctermbg=red guibg=red | |
match ExtraWhitespace /\s\+$/ | |
set pastetoggle=<F9> | |
"complie | |
map <f5> :call CompileRunGcc()<cr> | |
func! CompileRunGcc() | |
exec "w" | |
exec "!gcc % -o %<" | |
exec "! ./%<" | |
endfunc | |
map <f5> :call CompileRunGpp()<cr> | |
func! CompileRunGpp() | |
exec "w" | |
exec "!g++ % -o %<" | |
exec "! ./%<" | |
endfunc | |
" <f5> ¿?¿?python¿?¿? | |
map <f5> :w<cr>:!python %<cr> | |
" <f5> ¿?¿?shell¿?¿? | |
map <f5> :call CompileRunSH()<cr> | |
func! CompileRunSH() | |
exec "w" | |
exec "!chmod a+x %" | |
exec "!./%" | |
endfunc | |
"<f9> gdb¿?¿? | |
map <f9> :call Debug()<cr> | |
func! Debug() | |
exec "w" | |
exec "!gcc % -o %< -gstabs+" | |
exec "!gdb %<" | |
endfunc | |
set foldmethod=syntax | |
"é»è®¤æ åµä¸ä¸æå | |
set foldlevel=99 | |
"使Vimå¨ç¶ç®å½ä¸å¯»æ¾tagsæä»¶ | |
set tags=tags;/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment