Created
March 12, 2026 04:06
-
-
Save cj-praveen/64bbdf2292a6c692bf05b1b7309c012c to your computer and use it in GitHub Desktop.
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
| 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