Created
May 19, 2022 01:04
-
-
Save aussielunix/07f0b7e5eadc193139291e3e9bbf0c53 to your computer and use it in GitHub Desktop.
basic vimrc
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 | |
filetype plugin indent on | |
set shiftwidth=2 | |
set tabstop=2 | |
set nocompatible | |
set expandtab | |
set smarttab | |
set autoindent | |
set nu | |
set ruler | |
set background=light | |
set backspace=indent,eol,start | |
set mouse= | |
set ttymouse= | |
" setup folding | |
set foldenable | |
set foldmethod=syntax | |
" highlight trailing whitespace | |
:highlight ExtraWhitespace ctermbg=red guibg=red | |
:match ExtraWhitespace /\s\+$/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment