Skip to content

Commit

Permalink
fix: color schema
Browse files Browse the repository at this point in the history
  • Loading branch information
mikinovation committed Jun 2, 2024
1 parent 1db3372 commit d810cd1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion config/nvim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ if dein#check_install()
call dein#install()
endif

" カラースキームの復元
" TODO: legacyモードなので新しいschemeに変更したい
colorscheme vim

" 行番号を表示
set number
" タブ文字の代わりにスペースを使う
Expand Down Expand Up @@ -164,7 +168,11 @@ EOF
nmap <Leader>cc [copilot-chat]
xmap <Leader>cc [copilot-chat]
nnoremap <silent> [copilot-chat]i :<C-u>CopilotChat<CR>
nnoremap <silent> [copilot-chat]t :<C-u>CopilotChatToggle<CR>
nnoremap <silent> [copilot-chat]r :<C-u>CopilotChatReview<CR>
nnoremap <silent> [copilot-chat]o :<C-u>CopilotChatOptimize<CR>
nnoremap <silent> [copilot-chat]f :<C-u>CopilotChatFix<CR>
nnoremap <silent> [copilot-chat]fd :<C-u>CopilotChatFixDiagnostic<CR>
" coc-git

Expand Down

0 comments on commit d810cd1

Please sign in to comment.