This file contains 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
[Configuration] | |
MiscAlwaysShowTabs=FALSE | |
MiscBell=FALSE | |
MiscBellUrgent=FALSE | |
MiscBordersDefault=TRUE | |
MiscCursorBlinks=FALSE | |
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK | |
MiscDefaultGeometry=80x24 | |
MiscInheritGeometry=FALSE | |
MiscMenubarDefault=FALSE |
This file contains 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
""""""""" Plug-Vim """""""""" | |
" After adding below, install with :PlugInstall | |
" define plugins | |
call plug#begin('~/.vim/plugged') | |
" Auto-completion for all supported languages | |
Plug 'Valloric/YouCompleteMe', { 'do': './install.py --all' } |
This file contains 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
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac | |
# Don't put duplicate lines or lines starting with space in the history | |
HISTCONTROL=ignoreboth |