Created
February 27, 2011 17:12
-
-
Save plagelao/846334 to your computer and use it in GitHub Desktop.
Presentation, colors and syntax
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
" file syntax color on | |
syntax on | |
filetype on " enable file type detection | |
" colors | |
set t_Co=256 " use 256 colors | |
" show when you are in insert or visual mode | |
set showmode | |
" highlight the line containing the cursor | |
set cursorline | |
" show unwanted whitespace | |
set listchars=tab:-✈,trail:,extends:> | |
set list! | |
" fast terminal connection | |
set ttyfast | |
" show line numbers | |
set number | |
" status line | |
set showcmd " show status line | |
set laststatus=2 " show the status line always | |
set statusline=%f\ %(%m%r%h\ %)%([%Y]%)%=%<%-20{getcwd()}\ [b%n]\ %l/%L\ ~\ %p%%\ \ |
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
colorscheme tir_black " set color scheme |
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
:colorscheme {your_color_scheme_name} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment