From 223d300dea7ec6eaf147c02aef51aaf943ce47d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Gr=C3=BCnewald?= <10533763+dhalucario@users.noreply.github.com> Date: Sat, 12 Jul 2025 12:39:09 +0200 Subject: [PATCH] Forced to use vim an an IDE again --- shell/.vimrc | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/shell/.vimrc b/shell/.vimrc index fe73090..2e42b3d 100644 --- a/shell/.vimrc +++ b/shell/.vimrc @@ -5,20 +5,18 @@ let mapleader=' ' nnoremap vnoremap < >gv -nnoremap = :FormatXML map map map map - "" Vim Config " Set completeopt to have a better completion experience -set completeopt=menuone,noinsert,noselect +set completeopt=menu,noinsert " Avoid showing message extra message when using completion -set shortmess+=c +set shortmess=a " Add clipboard support -set clipboard^=unnamed,unnamedplus +set clipboard=unnamedplus " Enable syntax highlighting syntax on @@ -46,18 +44,13 @@ set relativenumber "" Plugins call plug#begin('~/.vim/plugged') Plug 'ghifarit53/tokyonight-vim' -Plug 'justinmk/vim-sneak' -Plug 'mattn/emmet-vim' +Plug 'mfussenegger/nvim-dap' +Plug 'mrcjkb/rustaceanvim' +Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } +Plug 'junegunn/fzf.vim' call plug#end() -set path+=** -set wildmenu - "" Theme let g:tokyonight_style='night' let g:tokyonight_enable_italic=0 colorscheme tokyonight - -"" Other -com! FormatXML :%!python3 -c "import xml.dom.minidom, sys; print(xml.dom.minidom.parse(sys.stdin).toprettyxml())" -