Created
April 29, 2026 01:38
-
-
Save touero/b3faa9b0072123323914878eb5b646a2 to your computer and use it in GitHub Desktop.
dotfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible | |
| syntax on | |
| set encoding=utf-8 | |
| set number | |
| set relativenumber | |
| set showmatch | |
| set ruler | |
| set laststatus=2 | |
| highlight LineNr ctermbg=235 | |
| highlight CursorLineNr ctermfg=220 ctermbg=235 | |
| highlight CursorLine ctermbg=236 | |
| set cursorline | |
| highlight CursorLine cterm=NONE ctermbg=236 | |
| set colorcolumn=72 | |
| highlight ColorColumn ctermbg=238 | |
| set expandtab | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set smartindent | |
| set autoindent | |
| set hlsearch | |
| set incsearch | |
| set ignorecase | |
| set smartcase | |
| set scrolloff=5 | |
| set hidden | |
| set wildmenu | |
| set backspace=indent,eol,start | |
| set nobackup | |
| set nowritebackup | |
| set noswapfile | |
| set mouse=a | |
| set t_Co=256 | |
| set statusline=%f\ %y\ %m%r\ %=Line:%l/%L\ Col:%c | |
| inoremap jk <Esc> | |
| set timeoutlen=300 | |
| inoremap jkf <Esc>:wq<CR> | |
| set timeoutlen=300 | |
| set clipboard=unnamedplus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment