1
0
Fork 0

Remove NERDTree plugin

This commit is contained in:
John Solncev 2021-04-01 20:08:15 +03:00
parent ade3b3b7d1
commit 12320b23c3

4
vimrc
View file

@ -35,7 +35,6 @@ endfunction
"Менеджер плагинов: Vim-Plug "Менеджер плагинов: Vim-Plug
"Подключение плагинов (для установки - :PlugInstal) "Подключение плагинов (для установки - :PlugInstal)
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'preservim/nerdtree'
Plug 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'
call plug#end() call plug#end()
@ -86,9 +85,6 @@ set softtabstop=4
set autoindent set autoindent
set smartindent set smartindent
"Кеймапы для NERDTree
nmap <C-n> :NERDTreeToggle<CR>
"Кеймапы для запуска Python скриптов "Кеймапы для запуска Python скриптов
autocmd BufRead *.py nmap <F5> :!python3 %<CR> autocmd BufRead *.py nmap <F5> :!python3 %<CR>
autocmd BufRead *.py nmap <F6> :!sudo python3 %<CR> autocmd BufRead *.py nmap <F6> :!sudo python3 %<CR>