Last active
July 11, 2024 05:29
-
-
Save cj-praveen/244ba699835a2b4e71e8db9600af4379 to your computer and use it in GitHub Desktop.
My Configuration for VIM
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 number | |
syntax on | |
set showmode | |
set nobackup | |
set noswapfile | |
set noundofile | |
set nowrap | |
set encoding=utf-8 | |
set tabstop=4 softtabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set smartindent | |
set wildmenu | |
set laststatus=2 | |
filetype on | |
set fillchars+=vert:\ | |
set mouse=a | |
set wrap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment