Skip to content

Instantly share code, notes, and snippets.

@keithmgould
Created March 28, 2018 16:56
Show Gist options
  • Save keithmgould/93139e84a9a1155d8199633ecdfdaf1b to your computer and use it in GitHub Desktop.
Save keithmgould/93139e84a9a1155d8199633ecdfdaf1b to your computer and use it in GitHub Desktop.
raspberry pi vimrc
"------------------------------------
" Look and Feel
"------------------------------------
set guifont=Monaco:h11
set background=dark
" show line numbers
set number
set ruler
" show search results
set hlsearch
nnoremap <silent> <Space> :nohlsearch<Bar>:echo<CR>
" enable syntax highlighting
syntax enable
"------------------------------------
" Formatting
"------------------------------------
" Convert tabs to spaces
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment