1
0
mirror of https://github.com/elisspace/dotfiles.git synced 2026-08-29 15:43:57 +00:00
Files
dotfiles/dot_vimrc
2022-06-12 17:18:48 -04:00

30 lines
476 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
source .vimrc.python