Compare commits

..

No commits in common. "a7e66550063cf0a5720adccc02238d856f9708ab" and "621a555c25da2f668ece12795a33cc9e37e3a369" have entirely different histories.

2 changed files with 1 additions and 19 deletions

View file

@ -38,7 +38,6 @@
nvim-treesitter-textobjects
nvim-ts-context-commentstring
markdown-preview-nvim # use({ "iamcco/markdown-preview.nvim", run = ":call mkdp#util#install()" })
render-markdown-nvim
toggleterm-nvim
nvim-notify
comment-nvim
@ -178,17 +177,7 @@
require("local_firenvim")
require("CopilotChat").setup({
highlight_headers = false,
separator = "---",
error_header = "> [!ERROR] Error",
window = {
layout = "float",
width = 0.8,
height = 0.8,
},
})
require("CopilotChat").setup()
require("diffview").setup({
view = {
merge_tool = {
@ -197,10 +186,6 @@
}
}
})
require("render-markdown").setup({
file_types = { "markdown", "vimwiki", "copilot-chat" },
})
'';
};
};

View file

@ -67,6 +67,3 @@ vim.cmd('nnoremap <expr> * v:hlsearch ? ":nohlsearch<cr>" : "*"')
-- insert-map jj/jk to escape
require("better_escape").setup()
-- open Copilot Chat window
nnoremap("<leader>cc", ":lua require('CopilotChat').open()<CR>")