Last active
August 31, 2017 02:07
-
-
Save 0xbepresent/2328def2eeaa915cf2fa to your computer and use it in GitHub Desktop.
My configs Mac-Vim
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
"Install Pathogen https://github.com/tpope/vim-pathogen | |
"Install Airline https://github.com/vim-airline/vim-airline | |
"Install Fugitive https://github.com/tpope/vim-fugitive | |
"Install Solarized https://github.com/altercation/vim-colors-solarized | |
"Helps to plugins installation | |
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
"Sintax configuration | |
set encoding=utf-8 | |
set background=dark | |
colorscheme solarized | |
set cc=80 | |
set columns=80 | |
set number | |
set t_Co=256 | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set list | |
set listchars=tab:▷⋅,trail:.,nbsp:. | |
set cc=80 | |
set cursorline | |
set mouse=a | |
hi Normal ctermbg=NONE | |
highlight ColorColumn ctermbg=6 | |
highlight LineNr ctermbg=NONE | |
hi CursorLine ctermbg=NONE | |
hi CursorColumn guifg=NONE guibg=#CCCCCC gui=NONE ctermfg=NONE ctermbg=6 cterm=BOLD | |
"Airline configuration | |
let g:airline#extensions#tabline#enabled = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment