From 15663cf4d0666670ff1dffcac9d56aef87752c3f Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Wed, 20 Mar 2024 11:56:18 +0100 Subject: a --- .vimrc | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 .vimrc (limited to '.vimrc') diff --git a/.vimrc b/.vimrc new file mode 100755 index 0000000..8f43359 --- /dev/null +++ b/.vimrc @@ -0,0 +1,38 @@ +set nocompatible " be iMproved, required +filetype off " required + +set rtp+=~/.vim/bundle/Vundle.vim + +set termguicolors + + +call vundle#begin() + +Plugin 'VundleVim/Vundle.vim' +Plugin 'kjwon15/vim-transparent' +Plugin 'mattn/emmet-vim' +Plugin 'qpkorr/vim-renamer' +Plugin 'mathofprimes/nightvision-vim' +Plugin 'catppuccin/vim' +Plugin 'dylanaraps/wal.vim' +Plugin 'puremourning/vimspector' + +call vundle#end() + +"colorscheme evening +colorscheme nightvision +set background=dark + +let g:nv_dark = 'jade' +let g:nv_contrast = "hard" + +filetype plugin indent on " required + +packadd termdebug + +autocmd Filetype dart setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4 +setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4 + +filetype indent on +set smartindent +syntax on -- cgit v1.2.3