-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
47 lines (37 loc) · 1.53 KB
/
vimrc
File metadata and controls
47 lines (37 loc) · 1.53 KB
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
" ------------------
" Vim Configutarions
" ------------------
filetype off " Required
set nocompatible " be iMproved
" Imports
runtime shortcuts.vim
runtime plug.vim
" Default colorscheme
colorscheme srcery
" Default Settings
syntax enable " Enable Syntax Processing
set expandtab " Transform tabs in spaces
set autoindent " Always set autoindenting on
set copyindent " copy the previous indentation on autoindenting
set shiftround " Use multiple of shiftwidth when indenting with '<' and '>'
set smarttab " Insert tabs on the start of a line according to
set cursorline " Highlight current line
set wildmenu " Visual autocomplete for command menu
set showmatch " Highlight matching [{()}]
set hlsearch " Highlight matches
set incsearch " Do incremental searching
set ignorecase " Ignore case when searching
set ruler " Show the cursor position all the time
set number " show line numbers
set nu rnu " Relative and asbsolute line numbers
set history=1000 " Remember more commands and search history
set undolevels=1000 " Use many muchos levels of undo
set hidden " Ignore hidden buffer message
set nobackup
set noswapfile
set mouse=a " turn on Mouse
let g:netrw_winsize = 25
let g:netrw_banner = 0
let g:netrw_browse_split = 2
let g:netrw_liststyle = 3
set paste " Turn on Ctrl + V pastign