Last active
July 19, 2021 06:54
-
-
Save m-Just/f44fc0223a65bf0fb7c65b2343f708cf to your computer and use it in GitHub Desktop.
This file contains 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
" musts | |
scriptencoding utf-8 | |
set nocompatible | |
syntax on | |
" highlight search (ctrl+l to remove highlights) | |
set hlsearch | |
nnoremap <C-L> :nohl<CR><C-L> | |
" lower letter search ignore cases | |
set ignorecase | |
set smartcase | |
" tab insert 4 spaces | |
set tabstop=4 | |
set expandtab | |
" other convenient settings | |
set autoindent | |
set number | |
set ruler | |
set confirm | |
set visualbell | |
set history=1000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment