diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-03-20 11:56:18 +0100 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-03-20 11:56:18 +0100 |
commit | 15663cf4d0666670ff1dffcac9d56aef87752c3f (patch) | |
tree | ef6de4c178d2d8ffaa257b5df2e040bccdd48df9 /.vimrc |
a
Diffstat (limited to '.vimrc')
-rwxr-xr-x | .vimrc | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -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 |