Skip to content

Instantly share code, notes, and snippets.

@fracasula
Last active April 4, 2020 08:10
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 fracasula/96536935aa3b975a1d95ed9519e3e21b to your computer and use it in GitHub Desktop.
Save fracasula/96536935aa3b975a1d95ed9519e3e21b to your computer and use it in GitHub Desktop.
My .vimrc configuration
set nocompatible " don't try to be compatible with vi
syntax enable
set number " show line numbers
set noerrorbells " no sound on error
set visualbell
set encoding=utf-8
set wrap
set expandtab " spaces instead of tabs
set tabstop=4 " 1 tab = 4 spaces
set history=1000
set ignorecase " case insensitive search
" Enable 256 colors palette in Gnome Terminal
if $COLORTERM == 'gnome-terminal'
set t_Co=256
endif
try
colorscheme desert
catch
endtry
set background=dark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment