Replies: 1 comment
-
Highly unlikely, you can tell Ultimately, I don't see the point, there are I have this for that purpose:
In short, maybe it's better not to try and make |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to mimic an ide using vim. I have made some progress with splits and panes.
Following is my .vimrc file.
set number set ruler set smartindent "set tw=60 set shellcmdflag=-ic set nocp "Take care of indents for Java. set autoindent set si set shiftwidth=4 set cinoptions+=j1 set nocompatible syntax on set cindent set tabstop=4 set expandtab filetype indent on let python_highlight_all = 1 let g:netrw_banner = 0 let g:netrw_liststyle = 3 let g:netrw_browse_split = 4 let g:netrw_altv = 1 let g:netrw_winsize = 20 augroup ProjectDrawer autocmd! autocmd VimEnter * :Vexplore autocmd VimEnter * wincmd l autocmd VimEnter * :term autocmd VimEnter * wincmd j autocmd VimEnter * :resize +10 autocmd VimEnter * wincmd x autocmd VimEnter * wincmd k autocmd VimEnter * :vert term htop -p 999999 autocmd VimEnter * wincmd x autocmd VimEnter * wincmd h autocmd VimEnter * :vertical resize -15 autocmd VimEnter * wincmd l autocmd VimEnter * :vertical resize +20 augroup END
With this, it looks like the following.
In this screen, there is htop running on the top right corner. I want that to be replaced with lazygit left pane. And when I select a file from the file explorer pane, the diff should open in the main editor pane (The middle pane).
Is it possible to achieve this?
Beta Was this translation helpful? Give feedback.
All reactions