From 4fd838cdb4b75ad8252d086f26b53db0dae0d0df Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Fri, 9 Jun 2023 00:21:31 +0200 Subject: [PATCH] added ipyhton integration --- home/.config/nvim/main.vim | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/home/.config/nvim/main.vim b/home/.config/nvim/main.vim index f4cec35..80170ec 100644 --- a/home/.config/nvim/main.vim +++ b/home/.config/nvim/main.vim @@ -13,14 +13,9 @@ packadd termdebug " debugging for rust command Rustdebug :let termdebugger="rust-gdb" | :Termdebug -" :W to write file as root" -command W :SudaWrite " Set completeopt to have a better completion experience" set completeopt=menuone,noinsert,noselect -" :E to open file as root" -command E :SudaRead - " Set completeopt to have a better completion experience" set completeopt=menuone,noinsert,noselect call plug#begin() @@ -42,6 +37,8 @@ Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } Plug 'junegunn/fzf.vim' Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && yarn install' } Plug 'nanotee/zoxide.vim' +Plug 'jpalardy/vim-slime', { 'for': 'python' } +Plug 'hanschen/vim-ipython-cell', { 'for': 'python' } runtime markdownpreview.vim call plug#end()