-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
32 lines (24 loc) · 1.06 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
set nocompatible " use VIM , not VI
syntax enable
let mapleader = ',' "The default is \, but a comma is much better.
filetype off
"------------Plugins---------------"
source ~/.vim/scripts/plugins.vim " downloading through vim-plug"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
"-------------Visual Settings--------------"
source ~/.vim/scripts/visuals.vim
"-------------Search--------------"
set hlsearch "Highlight all matched terms.
set incsearch "Incrementally highlight, as we type.
"------------Plugins---------------"
"------------Split Management--------------"
source ~/.vim/scripts/split_mgmt.vim
"-------------Mappings--------------"
source ~/.vim/scripts/mappings.vim
"-------------Auto-Commands--------------"
source ~/.vim/scripts/auto_commands.vim