mirror of
https://github.com/elisspace/dotfiles.git
synced 2026-08-29 15:43:57 +00:00
28 lines
454 B
Plaintext
28 lines
454 B
Plaintext
" highlight syntax
|
|
syntax on
|
|
|
|
" show line numbers
|
|
set number
|
|
" (also `set nu` works)
|
|
|
|
" disable the swapfile
|
|
set noswapfile
|
|
|
|
" highlight all results
|
|
set hlsearch
|
|
|
|
" ignore case in search
|
|
set ignorecase
|
|
|
|
" remap escape key for leaving insert mode
|
|
inoremap jk <ESC>
|
|
|
|
" change your leader key for shortcuts
|
|
let mapleader = "'"
|
|
|
|
" show search results as you type
|
|
set incsearch
|
|
|
|
" enable filetype detction, and loading of filetype plugins
|
|
filetype plugin on
|