mirror of
https://github.com/kossLAN/nvim-flake.git
synced 2025-11-04 17:59:50 -05:00
flake: update to nvim v0.11
This commit is contained in:
parent
84d76c1b08
commit
b24264a78b
4 changed files with 3 additions and 27 deletions
6
flake.lock
generated
6
flake.lock
generated
|
|
@ -181,11 +181,11 @@
|
|||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1731676054,
|
||||
"narHash": "sha256-OZiZ3m8SCMfh3B6bfGC/Bm4x3qc1m2SVEAlkV6iY7Yg=",
|
||||
"lastModified": 1743095683,
|
||||
"narHash": "sha256-gWd4urRoLRe8GLVC/3rYRae1h+xfQzt09xOfb0PaHSk=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "5e4fbfb6b3de1aa2872b76d49fafc942626e2add",
|
||||
"rev": "5e5402ecbcb27af32284d4a62553c019a3a49ea6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
|
|
@ -96,11 +96,6 @@ with final.pkgs.lib; let
|
|||
fidget-nvim
|
||||
# Color Highlights
|
||||
nvim-highlight-colors
|
||||
|
||||
# Copilot related plugins
|
||||
CopilotChat-nvim
|
||||
copilot-cmp
|
||||
copilot-lua
|
||||
];
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
|
|
@ -120,9 +115,6 @@ with final.pkgs.lib; let
|
|||
rustfmt # rust formatter
|
||||
prettierd # typescript/javascript formatter
|
||||
# google-java-format # java formatter based off google guidelines
|
||||
|
||||
# misc
|
||||
nodejs # copilot needs this unfortunately dont remove
|
||||
];
|
||||
in {
|
||||
# This is the neovim derivation
|
||||
|
|
|
|||
|
|
@ -105,7 +105,6 @@ cmp.setup {
|
|||
-- The insertion order influences the priority of the sources
|
||||
{ name = 'nvim_lsp', keyword_length = 3 },
|
||||
{ name = 'nvim_lsp_signature_help', keyword_length = 3 },
|
||||
{ name = 'copilot' },
|
||||
{ name = 'buffer' },
|
||||
{ name = 'path' },
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue