Skip to content

Instantly share code, notes, and snippets.

@0xbepresent
Last active August 31, 2017 02:07
Show Gist options
  • Save 0xbepresent/2328def2eeaa915cf2fa to your computer and use it in GitHub Desktop.
Save 0xbepresent/2328def2eeaa915cf2fa to your computer and use it in GitHub Desktop.
My configs Mac-Vim
"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