aboutsummaryrefslogtreecommitdiffstats
path: root/vim/.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/.vim')
m---------vim/.vim/vim-plug0
-rwxr-xr-xvim/.vim/vimrc8
2 files changed, 7 insertions, 1 deletions
diff --git a/vim/.vim/vim-plug b/vim/.vim/vim-plug
Subproject 3f17a5cc3d7b0b7699bb5963fef9435a839dada Subproject 88e31471818e9a29a8a20a0ee61360cfd7bdc1c
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