aboutsummaryrefslogtreecommitdiffstats
path: root/vim/.vim/vimrc
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2026-07-16 11:30:40 +0200
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2026-07-16 11:30:40 +0200
commitb6d51e4b27a15f6507e7c48d04c8aa6d51e2d90a (patch)
tree542b22043d17f6590ffb322ef37fe81a6acc81bb /vim/.vim/vimrc
parent99ec6c1b298c6685751fb61d654e221212dcc315 (diff)
downloaddotfiles-b6d51e4b27a15f6507e7c48d04c8aa6d51e2d90a.tar.gz
dotfiles-b6d51e4b27a15f6507e7c48d04c8aa6d51e2d90a.tar.bz2
dotfiles-b6d51e4b27a15f6507e7c48d04c8aa6d51e2d90a.zip
Updated vim
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