Skip to content

Commit dff7da3

Browse files
committed
Add some general settings
These are just some bare-bones settings to get us started. We're going to be using Vim to configure Vim, which is a bit hard without these settings. There are plenty of settings that I excluded here, but mostly because I just don't have the time. I have a whole section in my dotfiles repo that I'd recommend you look into if you're looking for general-purpose Vim settings: https://github.com/jez/dotfiles/blob/cc8fe3e26fa112f215c255f369cf462f606bbbf5/vimrc#L45-L73
1 parent 0673f0c commit dff7da3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

vimrc.vim

+10
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
11
" Gotta be first
22
set nocompatible
3+
4+
" --- General settings ---
5+
set backspace=indent,eol,start
6+
set ruler
7+
set number
8+
set showcmd
9+
set incsearch
10+
set hlsearch
11+
12+
syntax on

0 commit comments

Comments
 (0)