Skip to content

Instantly share code, notes, and snippets.

@cj-praveen
Created March 12, 2026 04:06
Show Gist options
  • Select an option

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

Select an option

Save cj-praveen/64bbdf2292a6c692bf05b1b7309c012c to your computer and use it in GitHub Desktop.
call plug#begin('~/.vim/plugged')
Plug 'tomasiser/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