-
Notifications
You must be signed in to change notification settings - Fork 2
/
vimrc
55 lines (44 loc) · 1.87 KB
/
vimrc
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" PURPOSE: The main (root) vimrc file. This file sets global variables, sources
" in other configuration files, and controls processing.
" AUTHOR: Todd E Thomas
" DATE: 2012/12/27
" MODIFIED:
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" CONFIGURATION PARAMETERS
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Set foundational Parameters
set encoding=utf-8
set runtimepath+="$HOME/.vim/"
" Manage Plug-ins with Pathogen
silent! call pathogen#infect()
silent! call pathogen#helptags()
" Base/System configuration; the most basic settings
source $HOME/.vim/vimrcs/system.vim
" Extend Vim configuration globally
source $HOME/.vim/vimrcs/extended.vim
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" SOURCE-IN LANGUAGES
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
source $HOME/.vim/after/ftplugin/bash.vim
source $HOME/.vim/after/ftplugin/clang.vim
"source $HOME/.vim/after/ftplugin/chef.vim
source $HOME/.vim/after/ftplugin/css.vim
source $HOME/.vim/after/ftplugin/html.vim
source $HOME/.vim/after/ftplugin/javascript.vim
source $HOME/.vim/after/ftplugin/json.vim
"source $HOME/.vim/after/ftplugin/perl.vim
"source $HOME/.vim/after/ftplugin/php.vim
source $HOME/.vim/after/ftplugin/puppet.vim
source $HOME/.vim/after/ftplugin/python.vim
source $HOME/.vim/after/ftplugin/ruby.vim
source $HOME/.vim/after/ftplugin/vimlang.vim
"source $HOME/.vim/after/ftplugin/xml.vim
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" User-defined configurations; this file will never be over-written
" Put your stuff here:
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
try
source $HOME/.vim/my_configs.vim
catch
endtry