Skip to content

Commit

Permalink
random
Browse files Browse the repository at this point in the history
  • Loading branch information
mosheavni committed Nov 28, 2024
1 parent f7775a6 commit ba1aef9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .config/nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ local M = {
model = 'claude-3.5-sonnet',
},
keys = {
{ '<leader>ccc', '<cmd>CopilotChat<CR>' },
{ '<leader>ccc', '<cmd>CopilotChat<CR>', mode = { 'n', 'v' } },
{ '<leader>ccs', '<cmd>CopilotChatStop<CR>' },
},
},
Expand Down
2 changes: 1 addition & 1 deletion .config/nvim/lua/user/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ vim.g.python3_host_prog = 'python3'
-- vim.g.do_filetype_lua = 1
-- vim.g.did_load_filetypes = 0

vim.o.titlestring = "%{fnamemodify(getcwd(), ':t')}"
vim.o.titlestring = "%{substitute(getcwd(), $HOME . '/Repos/', '', '')}"
vim.o.cursorcolumn = true
vim.o.cursorline = true -- Add highlight behind current line
vim.opt.shortmess:append { c = true, l = false, q = false, S = false, C = true, I = true }
Expand Down

0 comments on commit ba1aef9

Please sign in to comment.