nvim: Nuke everything Python related
Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
cdc8feecc8
commit
f977b8a246
5 changed files with 1 additions and 41 deletions
|
@ -1,20 +0,0 @@
|
|||
" Python Jedi
|
||||
let g:jedi#goto_command = "gt"
|
||||
let g:jedi#goto_assignments_command = "ga"
|
||||
let g:jedi#goto_definitions_command = "gd"
|
||||
let g:jedi#documentation_command = "K"
|
||||
let g:jedi#usages_command = "gx"
|
||||
let g:jedi#completions_command = "<Tab>"
|
||||
let g:jedi#rename_command = "gr"
|
||||
|
||||
let g:jedi#auto_initialization = 1
|
||||
let g:jedi#auto_vim_configuration = 0
|
||||
let g:jedi#use_tabs_not_buffers = 0
|
||||
let g:jedi#popup_on_dot = 1
|
||||
let g:jedi#popup_select_first = 0
|
||||
let g:jedi#smart_auto_mappings = 0
|
||||
let g:jedi#show_call_signatures = "2"
|
||||
let g:jedi#show_call_signatures_delay = 0
|
||||
let g:jedi#show_call_signatures_modes = 'i'
|
||||
let g:jedi#enable_speed_debugging = 0
|
||||
let g:jedi#completions_enabled = 1
|
|
@ -79,11 +79,11 @@ set wildignore+=*.gba,*.sfc,*.078,*.nds,*.smd,*.smc
|
|||
set wildignore+=*.linux2,*.win32,*.darwin,*.freebsd,*.linux,*.android
|
||||
|
||||
" Disable providers we do not give a shit about
|
||||
let g:loaded_python3_provider = 0
|
||||
let g:loaded_python_provider = 0
|
||||
let g:loaded_ruby_provider = 0
|
||||
let g:loaded_perl_provider = 0
|
||||
let g:loaded_node_provider = 0
|
||||
let g:python3_host_prog = '/usr/bin/python3'
|
||||
|
||||
" Disable some in built plugins completely
|
||||
let g:loaded_netrw = 1
|
||||
|
|
|
@ -52,8 +52,6 @@ Plug 'tpope/vim-repeat'
|
|||
Plug 'tpope/vim-sleuth'
|
||||
" Show indentation levels
|
||||
Plug 'Yggdroot/indentLine'
|
||||
" Floating terminal
|
||||
Plug 'voldikss/vim-floaterm'
|
||||
" Smooth scrolling
|
||||
Plug 'psliwka/vim-smoothie'
|
||||
" Directory viewer
|
||||
|
@ -88,9 +86,6 @@ Plug 'vim-erlang/vim-erlang-runtime', { 'for': 'erlang' }
|
|||
Plug 'vim-erlang/vim-erlang-tags', { 'for': 'erlang' }
|
||||
Plug 'vim-erlang/vim-erlang-omnicomplete', { 'for': 'erlang' }
|
||||
Plug 'vim-erlang/vim-erlang-compiler', { 'for': 'erlang' }
|
||||
" Python
|
||||
Plug 'vim-python/python-syntax'
|
||||
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
||||
" C/C++
|
||||
Plug 'vim-jp/vim-cpp'
|
||||
Plug 'octol/vim-cpp-enhanced-highlight'
|
||||
|
|
|
@ -55,11 +55,6 @@ nnoremap [t :tabprevious<CR>
|
|||
nnoremap ]t :tabnext<CR>
|
||||
nnoremap [T :tabfirst<CR>
|
||||
nnoremap ]T :tablast<CR>
|
||||
" For floating terminal
|
||||
nnoremap se :FloatermNew<CR>
|
||||
nnoremap [s :FloatermPrev<CR>
|
||||
nnoremap ]s :FloatermNext<CR>
|
||||
nnoremap st :FloatermToggle<CR>
|
||||
" For git
|
||||
nnoremap <Leader>gm :GitMessenger<CR>
|
||||
nnoremap <Leader>glh :Gina log --opener=split<CR>
|
||||
|
|
|
@ -44,21 +44,11 @@ let g:rainbow_active = 1
|
|||
let $FZF_DEFAULT_OPTS='--layout=reverse'
|
||||
let g:fzf_layout = { 'window': { 'width': 0.8, 'height': 0.8 } }
|
||||
|
||||
" Floaterm
|
||||
let g:floaterm_open_in_root = 0
|
||||
let g:floaterm_position = 'center'
|
||||
let g:floaterm_width = 0.8
|
||||
let g:floaterm_height = 0.8
|
||||
let g:floaterm_winblend = 0
|
||||
let g:floaterm_borderchars = ['─', '│', '─', '│', '╭', '╮', '╯', '╰']
|
||||
|
||||
" Incremental search
|
||||
let g:incsearch#auto_nohlsearch = 1
|
||||
|
||||
" Markdown
|
||||
let g:vim_markdown_conceal = 0
|
||||
" Python
|
||||
let g:python_highlight_all = 1
|
||||
" C/CPP
|
||||
let g:cpp_class_scope_highlight = 1
|
||||
let g:cpp_member_variable_highlight = 1
|
||||
|
|
Loading…
Reference in a new issue