-
Notifications
You must be signed in to change notification settings - Fork 26
/
DOT.vimrc
51 lines (45 loc) · 932 Bytes
/
DOT.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
" -- < GENERAL >-- "
set nomodeline
set nocompatible
set backspace=indent,eol,start
set autoindent
set expandtab
set nobackup
set number
set nowrap
set history=32
set ignorecase
set showcmd
set incsearch
set hlsearch
set tabstop=8
set shiftwidth=8
set softtabstop=8
set noexpandtab
set ruler
set mouse-=a
" disable ~/.viminfo file
let skip_defaults_vim=1
set viminfo=""
" set virtualedit=all
" ALLOWS TO MOVE CURSOR PAST LAST CHARACTER
" --< COMMANDS >-- "
command WQ wq
command Wq wq
command W w
command Q q
" --< COLORS / SYNTAX >-- "
syntax on
" colorscheme solarized
" --< TABS BINDINGS >-- "
" map <C-t> :tabnew<CR>
" map <C-w> :tabclose<CR>
" map <C-left> :tabp<CR>
" map <C-right> :tabn<CR>
" map <C-home> :tabfirst<CR>
" map <C-end> :tablast<CR>
" --< TEMP >-- "
" map q ^Y -- 'q' is scroll line up
" map z ^E -- 'z' is scroll line down
" map ; ^B -- ';' page up
" map , ^F -- ',' page down