Last active
March 14, 2022 04:06
-
-
Save manesec/97f9395fc36155b4fd0fceaa40c5c24e to your computer and use it in GitHub Desktop.
My Windows Vimrc Files
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
filetype plugin indent on | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set nu | |
set encoding=utf-8 | |
set guifont=Consolas:h16:cANSI:qDRAFT | |
set spelllang=en_us | |
colorscheme gruvbox " -- installed colorscheme | |
" --- search / regexp --- | |
set gdefault " RegExp global by default | |
set magic " Enable extended regexes. | |
set hlsearch " highlight searches | |
set incsearch " show the `best match so far' astyped | |
set ignorecase smartcase " make searches case-insensitive, unless they | |
set t_Co=256 | |
set guioptions-=T " remove toolbar | |
set guioptions-=m " remove menu on win32 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment