-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
20 lines (19 loc) · 669 Bytes
/
.vimrc
File metadata and controls
20 lines (19 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
syntax on "improves colors
colorscheme onedark "theme
set termguicolors "for colors
command W w "allow caps
command Wq wq "allow caps
command WQ wq "allow caps
command Q q "allow caps
set number "adds line numbers
set expandtab "spaces for tabs
set sw=4 "default to tabstop
set tabstop=4 "visual spaces per tab
set softtabstop=4 "tab spaces while editing
set expandtab "tabs are spaces
set wildmenu "visual autocomplete
set incsearch "search as characters are entered
set hlsearch "highlight matches
set backspace=indent,eol,start "allows use of backspace
set autoindent "new lines inherit the indent from the previous lines
set history=50 "improves the undo property