Skip to content

Instantly share code, notes, and snippets.

@cj-praveen
Last active February 9, 2026 04:09
Show Gist options
  • Select an option

  • Save cj-praveen/244ba699835a2b4e71e8db9600af4379 to your computer and use it in GitHub Desktop.

Select an option

Save cj-praveen/244ba699835a2b4e71e8db9600af4379 to your computer and use it in GitHub Desktop.
My Configuration for VIM
call plug#begin('~/.vim/plugged')
Plug 'cj-praveen/vim-code-dark'
call plug#end()
colorscheme codedark
set number
syntax on
set showmode
set nobackup
set noswapfile
set noundofile
set encoding=utf-8
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set wildmenu
set laststatus=2
filetype on
set fillchars+=vert:\
set mouse=a
set nowrap
set splitbelow
set splitright
let g:netrw_banner = 0
let g:netrw_liststyle = 3
let g:netrw_browse_split = 4
let g:netrw_altv = 1
autocmd VimEnter * topleft 25vsplit | Explore
autocmd BufEnter * if winnr('$') == 1 && &filetype ==# 'netrw' | qall | endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment