Skip to content

vkanta/nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

🧠 GitHub Copilot + Kickstart.nvim Setup

This guide explains how to activate GitHub Copilot in Neovim using the copilot.lua plugin with the kickstart.nvim base config.


✅ Prerequisites

  • Neovim 0.11-dev (0.9+ recommended)
  • GitHub Copilot subscription
  • Nerd Font recommended (optional)
  • Internet access

📦 Plugin Configuration (already included in init.lua)

{
  "zbirenbaum/copilot.lua",
  event = "InsertEnter",
  config = function()
    require("copilot").setup({
      suggestion = {
        enabled = true,
        auto_trigger = true,
        keymap = {
          accept = "<C-l>",
          next = "<C-j>",
          prev = "<C-k>",
          dismiss = "<C-]>",
        },
      },
      panel = { enabled = false },
      filetypes = {
        ["*"] = true, -- Enable for all filetypes
      },
    })
  end,
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages