Created
October 19, 2025 06:55
-
-
Save esamson33/f65e88fbf34b4513496df1a0627d46de to your computer and use it in GitHub Desktop.
Reconstructed .vimrc from Hilpisch book
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 | |
| filetype plugin indent on | |
| set number | |
| set ruler | |
| set showcmd | |
| set laststatus=2 | |
| set background=dark | |
| colorscheme desert | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set softtabstop=4 | |
| set expandtab | |
| set autoindent | |
| set smartindent | |
| set smarttab | |
| set hlsearch | |
| set incsearch | |
| set ignorecase | |
| set smartcase | |
| set nowrap | |
| set encoding=utf-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment