Skip to content

Instantly share code, notes, and snippets.

@guilhermerodrigues680
Created November 25, 2020 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guilhermerodrigues680/36031c3ba24e4caefe19d06d3c6c74cb to your computer and use it in GitHub Desktop.
Save guilhermerodrigues680/36031c3ba24e4caefe19d06d3c6c74cb to your computer and use it in GitHub Desktop.
Vim colorido no macOS
syntax on
set laststatus=2
set visualbell
set number
set showcmd
set ruler
" Indentation settings for using 4 spaces instead of tabs.
" Do not change 'tabstop' from its default value of 8 with this setup.
set shiftwidth=4
set softtabstop=4
set expandtab
" Baixar esquema de cores em: https://github.com/altercation/vim-colors-solarized
" Color scheme (terminal)
let g:solarized_termcolors=256
let g:solarized_termtrans=1
" Color
set background=dark
colorscheme solarized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment