Created
May 13, 2020 13:58
-
-
Save hugoestr/e5f51b3318283f722349af98cf736763 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
" pathogen setup | |
execute pathogen#infect() | |
" generic setup | |
syntax on | |
filetype plugin indent on | |
" setting spaces | |
set expandtab | |
set shiftwidth=2 | |
set softtabstop=2 | |
set autoindent | |
set mouse=a | |
" Set up numbers | |
set nu | |
" Bigger fonts in the gui | |
set guifont=Menlo:h24 | |
" keep the ruler | |
set ruler | |
" highlight the searches | |
set hls | |
" copy to clipboard on mac | |
vmap '' :w !pbcopy<CR><CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment