-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.vim.example
More file actions
29 lines (19 loc) · 903 Bytes
/
config.vim.example
File metadata and controls
29 lines (19 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
" Personal information
let g:full_name = "insert you name here"
" default settings
let g:use_ack = 1 " Use ack instead of grep
let g:use_expandtab = 1 " Use space instead of tab
let leader_key = ","
" variável necessária para busca no Apidock e jQuery API
let g:browser = 'firefox -new-tab '
" No OSX - let g:browser = 'open -a /Applications/Firefox.app'
let g:clip_command = "xclip -selection clipboard" " Linux
" Vim style settings
colorscheme vividchalk " Set you default color schema
set gfn = "Monaco 11" " Set you font style
" Github integration
let g:github_user = "insert here you github user name"
let g:github_token = ""
" Syntatic Settings
" Abrir automaticamente a lista de erros e fechá-la quando o erro for corrigido
let g:syntastic_auto_loc_list = 1