summaryrefslogtreecommitdiff
path: root/nvim/init.vim
blob: 05d4c8e52114613cc687c8148ad4fdece2242be1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
" Use system clipboard
set clipboard+=unnamedplus

" Case-insensitive search
set ignorecase

" Keep long lines unwrapped
set nowrap

" Use spaces instead of tabs
set expandtab

" Display a tab character as four spaces
set tabstop=4

" Indent using four spaces
set shiftwidth=4

" Clear search highlighting with double Esc
nnoremap <Esc><Esc> :nohlsearch<CR>