diff options
author | listout <listout@protonmail.com> | 2022-08-25 01:15:39 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-09-01 16:26:42 +0530 |
commit | b2da05f4e3072f24c52eb14376c1f32cb19e6932 (patch) | |
tree | 18a9c0388d8d1a7e9af1f21d7c55ef1e13f7d019 /configs/basic.vim | |
parent | dd31843246ccdf9783f1b54d79b5e1ee22596399 (diff) |
remove old configs
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'configs/basic.vim')
-rw-r--r-- | configs/basic.vim | 106 |
1 files changed, 0 insertions, 106 deletions
diff --git a/configs/basic.vim b/configs/basic.vim deleted file mode 100644 index cdb51e1..0000000 --- a/configs/basic.vim +++ /dev/null @@ -1,106 +0,0 @@ -" Line numbering -set relativenumber number -"set number - -" Sign Column -"set signcolumn=yes - -" Enable mouse scroll -set mouse=a - -" Lines vim should remember -set history=500 - -" Don't be Vi compatible -set nocompatible - -" Enable filytype plugin and indent -filetype plugin indent on - -" Remap leader key -let mapleader="," - -" Autoread file if changed externally -set autoread -au FocusGained,BufEnter * checktime - -" Wildmenu in COMMAND mode -set path+=** -set wildmenu -set showcmd -" Ignore compiled files -set wildignore=*.o,*~,~*.pyc -set wildignore+=*.bmp,*.gif,*.ico,*.jpg,*.png,*.ico -set wildignore+=node_modules/*,browse_components/* -if has("win16") || has("win32") - set wildignore+=.git\*,.hg\*,.svn\* -else - set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store -endif - -" Make backspace work as it should -set backspace=eol,start,indent -set whichwrap+=<,>,h,l - -" Better searching -set ignorecase smartcase nohlsearch - -" No redraw when using macros -set lazyredraw - -" Vim's regular expression magic -set magic - -" Show matching braces -set showmatch - -" How many tenths of seconds ro blink -set mat=2 - -" Syntax highlighting -syntax enable - -" utf-8 encoding -set encoding=utf-8 -if &encoding != 'utf-8' - set encoding=utf-8 -endif - -" unix as standard file format -set ffs=unix,dos,mac - -" Hidden buffers -set hidden - -" No backup files -set nobackup nowritebackup - -" No swap files -set noswapfile - -" Tab settings -set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab - -" Correct indentation -set autoindent smartindent cindent - -" Share system clipboard -set clipboard=unnamedplus - -" Netrw directory history -let g:netrw_dirhistmax=0 - -" Autoremove unwanted whitespaces -autocmd BufWritePre * %s/\s\+$//e - -" Shell -set shell=zsh - -" Change the current working directory -"set autochdir - -" Python host -let g:python3_host_prog='/usr/bin/python' - -" Option setting for diff mode -set diffopt+=algorithm:histogram |