Last active
April 4, 2020 08:10
-
-
Save fracasula/96536935aa3b975a1d95ed9519e3e21b to your computer and use it in GitHub Desktop.
My .vimrc configuration
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
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