dotfiles

dotfile of sort
git clone git://git.nirm.al/dotfiles
Log | Files | Refs | README | LICENSE

commit a1b04517a59caa969f918c20df49df44b415e433
Author: Nirmal Kumar R <tildezero@gmail.com>
Date:   Wed, 27 Mar 2024 16:48:49 +0530

Add .vimrc

Diffstat:
A.vimrc | 52++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+), 0 deletions(-)

diff --git a/.vimrc b/.vimrc @@ -0,0 +1,52 @@ +set nocompatible + +call plug#begin('~/.vim/plugged') +" Actual plugins +Plug 'editorconfig/editorconfig-vim' +Plug 'tpope/vim-fugitive' +Plug 'itchyny/lightline.vim' +call plug#end() + +" Important!! +if has('termguicolors') + set termguicolors +endif + +" For dark version. +set background=dark + +" Set contrast. +" This configuration option should be placed before `colorscheme everforest`. +" Available values: 'hard', 'medium'(default), 'soft' +let g:everforest_background = 'soft' + +" For better performance +let g:everforest_better_performance = 1 + +colorscheme everforest + +set laststatus=2 +set t_Co=256 +set encoding=utf-8 +set autoindent +set magic +set number +set scrolloff=3 +set sidescroll=3 +set ruler +set cc=80 +set nowrap +set ignorecase +set smartcase +set splitbelow +set hidden +set notimeout +set incsearch +set showmatch +set hlsearch +set mouse=a +set noswapfile +set nofoldenable +set lazyredraw + +syntax enable