Skip to content

Instantly share code, notes, and snippets.

View nbloomf's full-sized avatar
💭
reticulating splines

Nathan Bloomfield nbloomf

💭
reticulating splines
View GitHub Profile
@nbloomf
nbloomf / basic-vim-settings.vim
Created February 20, 2023 01:45 — forked from sirbrillig/basic-vim-settings.vim
Some of my most basic vim/nvim settings
syntax on
filetype on
filetype plugin on
filetype indent on
set hlsearch "highlight search matches
set autoindent "use previous line's indent level
set preserveindent " when reindenting try to preserve existing indentation as much as possible
set copyindent " when starting a new line use the indent of the previous line
set hidden "allow edited buffers to be hidden
set switchbuf=useopen "use existing buffer rather than opening a new one