Skip to content

Instantly share code, notes, and snippets.

@TiagoTi
Last active March 17, 2020 08:03
Show Gist options
  • Save TiagoTi/0c43e41b93b4f6979ef18c75db0e1a0f to your computer and use it in GitHub Desktop.
Save TiagoTi/0c43e41b93b4f6979ef18c75db0e1a0f to your computer and use it in GitHub Desktop.
"Load Plugin Manager Pathogen
execute pathogen#infect()
"Disable compatible with vi to enable all features of vim
set nocompatible
"enable ç to enter in command mode
:map ç :
"Enable: Syntax | Theme | based on file extension (Sample .html, .rb, .sh) ident
syntax on
colorscheme dracula
filetype plugin indent on
"Enable Seach: HighLight | ignore case
set hlsearch
set ignorecase
"show in line: line number | line relative number | cursor lines
set number
set relativenumber
set cursorline
"Enable: Auto Ident
set ai
"Number of spaces that a <Tab> in the file counts for.
"Returns the effective value of 'shiftwidth'
set tabstop=4 shiftwidth=0 nolinebreak
"Show (partial) command in the last line of the screen.
set showcmd
"Auto load NERDTRee
"autocmd vimenter * NERDTree
"Show hidden files in NERDTRee
let NERDTreeShowHidden=1
"Per-directory .vimrc files
set exrc
set secure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment