forked from HariP19/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
66 lines (48 loc) · 1.39 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
56
57
58
59
60
61
62
63
64
65
" _
" (_)
"__ ___ _ __ ___ _ __ ___
"\ \ / / | '_ ` _ \| '__/ __|
" \ V /| | | | | | | | | (__
" \_/ |_|_| |_| |_|_| \___|
"
"=============================================================
" Configuration Settings
"
" Set syntax detection to on
syntax on
" Set indentation to on
set autoindent
set smartindent
" Set tab 4-spaces-wide
set tabstop=4
" Set indent to 4-spaces-wide
set shiftwidth=4
" Enable line numbers
set number
" Enable relative numbers
set relativenumber
" Enable mouse on all modes
set mouse=a
" Set background colorschemej
"set background=dark
" set t_Co=256
" set t_ut=
" colorscheme codedark
" Allow copying to clipboard
set clipboard^=unnamed,unnamedplus
" Start NERDTree and put the cursor back in the other window.
" autocmd VimEnter * NERDTree | wincmd p
" Exit Vim if NERDTree is the only window remaining in the only tab.
" autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
" Open the existing NERDTree on each new tab.
" autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif
"===============================================================
" Remappings
inoremap jj <ESC> " leave insert mode with jj
"===============================================================
"Plugins
"
"call plug#being()
"Plug 'AhmedAbdulrahman/vim-aylin'
"
"call plug#end()