laptop
Elias Almqvist 9 months ago
parent ac7ba0858f
commit 0c2b66f99d
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 2
      nvchad/.config/nvim/lua/custom/chadrc.lua
  2. 13
      nvchad/.config/nvim/lua/custom/plugins.lua

@ -6,7 +6,7 @@ local highlights = require "custom.highlights"
M.ui = {
theme = "gruvchad",
theme_toggle = { "gruvchad", "one_light" },
theme_toggle = { "gruvchad", "gruvbox_light" },
hl_override = highlights.override,
hl_add = highlights.add,

@ -47,6 +47,19 @@ local plugins = {
end,
},
{
"github/copilot.vim",
lazy = false,
config = function()
-- Mapping tab is already used by NvChad
vim.g.copilot_no_tab_map = true;
vim.g.copilot_assume_mapped = true;
vim.g.copilot_tab_fallback = "";
-- The mapping is set to other key, see custom/lua/mappings
-- or run <leader>ch to see copilot mapping section
end
},
{
"nvim-treesitter/nvim-treesitter",
dependencies = {

Loading…
Cancel
Save