-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
26 lines (22 loc) · 963 Bytes
/
vimrc
File metadata and controls
26 lines (22 loc) · 963 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
" Author: Hrishabh Rajput
" Path: $HOME/.vimrc
syntax enable " enable syntax processing
colors kuroi
set background=dark " just for kuroi colorscheme
set t_Co=256
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in TAB when editing
set expandtab " tabs are spaces
set autoindent " applies previous TAB
set smartindent " especially for C
set shiftwidth=4 " solves problems with tabs
set number relativenumber " show line numbers
set showcmd " show command in bottom bar
set cursorline " highlight current line
set showmatch " highlight matching brackets
set wildmode=longest,list,full " enable autocomplete
set splitbelow splitright " splits new window at bottom or right
set incsearch " search as characters are entered
set backspace=indent,eol,start " make backspaces work correctly
set cpo-=$
set nocp