Skip to content

Instantly share code, notes, and snippets.

@zetaraku
Last active February 3, 2021 18:17
Show Gist options
  • Save zetaraku/26526affddca5ba826dd8dcaf3f636b9 to your computer and use it in GitHub Desktop.
Save zetaraku/26526affddca5ba826dd8dcaf3f636b9 to your computer and use it in GitHub Desktop.
my .vimrc file
" vim: set ft=vim:
" Encoding / Language
set encoding=utf-8 nobomb
language en_US
set spell spelllang=en
" Color / Syntax Highlight
color default
set background=dark
syntax enable
" System
set clipboard=unnamed,unnamedplus
set guifont=UbuntuMono_NF:h24:cANSI:qDRAFT
" Display
set number
set ruler
set nowrap
set cursorline cursorlineopt=number,line
set showmode
set showcmd
set noshowmatch
set wildmenu
set incsearch hlsearch
set scrolloff=5
set history=1000
set magic
set hidden
" Indenting
set shiftwidth=4 tabstop=4 noexpandtab
set autoindent smartindent
set list listchars=tab:¦\ ,precedes:«,extends:»,nbsp:·,trail:▓
set endofline fixendofline fileformat=unix
" Key Mapping
map Y y$
set pastetoggle=\\p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment