flake: update to nvim v0.11

This commit is contained in:
kossLAN 2025-03-29 12:54:14 -04:00
parent 84d76c1b08
commit b24264a78b
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
4 changed files with 3 additions and 27 deletions

6
flake.lock generated
View file

@ -181,11 +181,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1731676054, "lastModified": 1743095683,
"narHash": "sha256-OZiZ3m8SCMfh3B6bfGC/Bm4x3qc1m2SVEAlkV6iY7Yg=", "narHash": "sha256-gWd4urRoLRe8GLVC/3rYRae1h+xfQzt09xOfb0PaHSk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5e4fbfb6b3de1aa2872b76d49fafc942626e2add", "rev": "5e5402ecbcb27af32284d4a62553c019a3a49ea6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -96,11 +96,6 @@ with final.pkgs.lib; let
fidget-nvim fidget-nvim
# Color Highlights # Color Highlights
nvim-highlight-colors nvim-highlight-colors
# Copilot related plugins
CopilotChat-nvim
copilot-cmp
copilot-lua
]; ];
extraPackages = with pkgs; [ extraPackages = with pkgs; [
@ -120,9 +115,6 @@ with final.pkgs.lib; let
rustfmt # rust formatter rustfmt # rust formatter
prettierd # typescript/javascript formatter prettierd # typescript/javascript formatter
# google-java-format # java formatter based off google guidelines # google-java-format # java formatter based off google guidelines
# misc
nodejs # copilot needs this unfortunately dont remove
]; ];
in { in {
# This is the neovim derivation # This is the neovim derivation

View file

@ -105,7 +105,6 @@ cmp.setup {
-- The insertion order influences the priority of the sources -- The insertion order influences the priority of the sources
{ name = 'nvim_lsp', keyword_length = 3 }, { name = 'nvim_lsp', keyword_length = 3 },
{ name = 'nvim_lsp_signature_help', keyword_length = 3 }, { name = 'nvim_lsp_signature_help', keyword_length = 3 },
{ name = 'copilot' },
{ name = 'buffer' }, { name = 'buffer' },
{ name = 'path' }, { name = 'path' },
}, },

View file

@ -1,15 +0,0 @@
-- Copilot related plugins setup
-- require('CopilotChat').setup {
-- debug = true,
-- }
require('copilot_cmp').setup()
require('copilot').setup {
suggestion = { enabled = false },
panel = { enabled = false },
filetypes = {
-- ['java'] = true,
['*'] = false,
},
}