File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ plugins=(
55
55
https://github.com/coderifous/textobj-word-column.vim.git
56
56
https://github.com/coderifous/working-set.vim.git
57
57
https://github.com/majutsushi/tagbar.git
58
+ https://github.com/junegunn/fzf.git
58
59
https://github.com/junegunn/fzf.vim.git
59
60
https://github.com/slim-template/vim-slim.git
60
61
https://github.com/elixir-lang/vim-elixir.git
@@ -68,6 +69,9 @@ plugins=(
68
69
69
70
https://github.com/nanotech/jellybeans.vim.git
70
71
https://github.com/nightsense/stellarized.git
72
+
73
+ https://github.com/github/copilot.vim
74
+ https://github.com/gcmt/taboo.vim
71
75
)
72
76
73
77
bundle_dir=$HOME /.vim/bundle
Original file line number Diff line number Diff line change 1
1
" Key Mappings
2
2
" ------------------------------------------------------------
3
3
4
+ imap <C-c> <Esc>
5
+ imap <C-g> <Esc>:Copilot<cr>
6
+
4
7
" Eval line of (V)im script
5
8
nnoremap <Leader>V 0v$hy:<C-r>"<cr>
6
9
Original file line number Diff line number Diff line change @@ -220,3 +220,9 @@ highlight clear ALEWarningSign
220
220
" Because youcompleteme says to do this:
221
221
let g:ycm_key_list_select_completion = ['<C-n>', '<C-p>']
222
222
223
+ " Github Copilot mappings
224
+ nmap <Leader>gc :Copilot<CR>
225
+ imap <silent><script><expr> <C-]> copilot#Next()
226
+ " imap <silent><script><expr> <C-[> copilot#Previous()
227
+
228
+ let g:copilot_node_command = "~/.nvm/versions/node/v21.6.2/bin/node"
You can’t perform that action at this time.
0 commit comments