Skip to content

Instantly share code, notes, and snippets.

@noslin005
Created June 26, 2025 00:34
Show Gist options
  • Save noslin005/11981c741c3aea76ee6ce41e6a58ebc1 to your computer and use it in GitHub Desktop.
Save noslin005/11981c741c3aea76ee6ce41e6a58ebc1 to your computer and use it in GitHub Desktop.
vimrc
" Show line numbers
set number

" Allow normal pasting
set paste

" Set NPC analogues for set list
set listchars=eol:¬,tab:>-,trail:█,extends:>,precedes:<

" Set tab to 4 true spaces
set tabstop=4
set shiftwidth=4
set expandtab

" Make formatting nicer
syntax on
filetype plugin on
set bg=dark

" General
set nocompatible
set modeline
set paste
set showmatch
set hlsearch
set smartcase
set ignorecase
set incsearch
set autoindent
set smartindent
set smarttab
set softtabstop=4

" Advanced
set ruler
set undolevels=1000
set backspace=indent,eol,start

" Turn on crosshairs
set cursorline
autocmd FileType yaml setlocal ai et cuc cul ts=2 sw=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment