Last active
December 1, 2022 04:42
-
-
Save datmt/91e81d887bc317706d818bd8fe473b06 to your computer and use it in GitHub Desktop.
My Vim RC
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 encoding=utf-8 | |
set wrap | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set expandtab | |
set laststatus=2 | |
set showmode | |
set showcmd | |
set hlsearch | |
set incsearch | |
set ignorecase | |
set smartcase | |
set showmatch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment