aboutsummaryrefslogtreecommitdiffstats
path: root/vim/.vim/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vim/.vim/vimrc')
-rwxr-xr-xvim/.vim/vimrc8
1 files changed, 7 insertions, 1 deletions
diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc
index 085e2e7..11dc82b 100755
--- a/vim/.vim/vimrc
+++ b/vim/.vim/vimrc
@@ -43,6 +43,11 @@ if has('python') || has('python3')
43 Plug 'Valloric/YouCompleteMe', {'do': g:ycm_install_command} 43 Plug 'Valloric/YouCompleteMe', {'do': g:ycm_install_command}
44endif 44endif
45 45
46if has('nvim')
47 Plug 'nvim-lua/plenary.nvim'
48 Plug 'greggh/claude-code.nvim'
49endif
50
46call plug#end() 51call plug#end()
47 52
48""" DEFAULT VIM SETTINGS 53""" DEFAULT VIM SETTINGS
@@ -125,8 +130,9 @@ nnoremap <silent> <Leader>ml :call AppendModeline()<CR>
125" NeoVIM specifics 130" NeoVIM specifics
126if has('nvim') 131if has('nvim')
127 nmap <BS> <C-W>h 132 nmap <BS> <C-W>h
128 tnoremap <Esc> <C-\><C-n> 133 " tnoremap <Esc> <C-\><C-n>
129 autocmd TermOpen * setlocal nolist 134 autocmd TermOpen * setlocal nolist
135 lua require('claude-code').setup({ window = { position = 'vertical botright' } })
130endif 136endif
131 137
132""" PLUGIN SPECIFIC SETTINGS 138""" PLUGIN SPECIFIC SETTINGS