Created
March 1, 2021 12:53
-
-
Save wicochandra/207f41e61bf515764a730fe53e45f888 to your computer and use it in GitHub Desktop.
Various home settings in UNIX
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
| syntax on | |
| set number | |
| set expandtab | |
| set tabstop=2 shiftwidth=2 | |
| set smarttab | |
| set autoindent | |
| set ignorecase | |
| set smartcase | |
| set hlsearch | |
| set incsearch | |
| set showmatch | |
| set cursorline | |
| set laststatus=2 | |
| set modelines=0 | |
| set scrolloff=5 | |
| set backspace=indent,eol,start | |
| set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%l,%v][%p%%]\ [BUFFER=%n]\ %{strftime('%c')} | |
| nnoremap <F2> :set invpaste paste?<CR> | |
| set pastetoggle=<F2> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment