diff --git a/README.md b/README.md index 6f35cf3..ec1dcfb 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,4 @@ - [ ] Open last active buffer after :bd - [ ] Code action - [ ] DAP support +- [ ] https://github.com/rachartier/tiny-inline-diagnostic.nvim diff --git a/config/ai/avante.nix b/config/ai/avante.nix new file mode 100644 index 0000000..df9e605 --- /dev/null +++ b/config/ai/avante.nix @@ -0,0 +1,18 @@ +# Cursor like ai driven code suggestions +{ ... }: +{ + plugins.avante = { + enable = true; + settings = { + provider = "openai"; + auto_suggestions_provider = "openai"; + openai = { + endpoint = "https://api.deepseek.com/v1"; + model = "deepseek-chat"; + timeout = 30000; + temperature = 0; + max_tokens = 4096; + }; + }; + }; +} diff --git a/config/blink.nix b/config/blink.nix index d752b28..39e6b5e 100644 --- a/config/blink.nix +++ b/config/blink.nix @@ -34,7 +34,5 @@ }; }; }; - cmp-nvim-lsp.enable = true; - cmp.enable = true; }; } diff --git a/config/default.nix b/config/default.nix index 78f9be7..0afec8f 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,6 +1,7 @@ { # Import all your configuration modules here imports = [ + ./ai/avante.nix ./buffer/bufdelete.nix ./blink.nix ./bufferline.nix diff --git a/config/lsp/default.nix b/config/lsp/default.nix index 4bda908..6f54dd1 100644 --- a/config/lsp/default.nix +++ b/config/lsp/default.nix @@ -5,5 +5,6 @@ ./lsp-format.nix ./lspkind.nix ./nvim-metals.nix + ./vimtex.nix ]; } diff --git a/config/lsp/nvim-metals.nix b/config/lsp/nvim-metals.nix index fa8e983..6eb13d3 100644 --- a/config/lsp/nvim-metals.nix +++ b/config/lsp/nvim-metals.nix @@ -27,7 +27,6 @@ useGlobalExecutable = true, verboseCompilation = true } - metals_config.capabilities = require("cmp_nvim_lsp").default_capabilities() ''; autoCmd = [ @@ -40,7 +39,10 @@ require("metals").initialize_or_attach(metals_config) end ''; - pattern = [ "scala" "sbt" ]; + pattern = [ + "scala" + "sbt" + ]; } ]; diff --git a/config/lsp/vimtex.nix b/config/lsp/vimtex.nix new file mode 100644 index 0000000..90ac09e --- /dev/null +++ b/config/lsp/vimtex.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: +{ + plugins.vimtex = { + enable = true; + settings = { + view_method = "zathura"; + }; + texlivePackage = pkgs.texlive.combined.scheme-full; + }; +}