Compare commits

...

4 commits

Author SHA1 Message Date
GaspardCulis
cab698dad5 fix(hypr): Fixed missing firefoxpwa package 2024-11-14 12:24:33 +01:00
GaspardCulis
d32ef92f78 feat(hypr): Enable firefox pwas 2024-11-14 12:22:27 +01:00
GaspardCulis
8e650f11c8 chore(helix): Configured languages to use lsp-ai 2024-11-14 10:45:52 +01:00
GaspardCulis
ab3b928a0b feat(helix): Added config for lsp-ai 2024-11-14 10:26:02 +01:00
3 changed files with 41 additions and 5 deletions

View file

@ -51,7 +51,6 @@
brightnessctl
networkmanagerapplet
# Apps launchable from bindings
firefox
kitty
yazi
# Yazi requirements
@ -62,6 +61,8 @@
vlc
qbittorrent
webcord
# Firefox PWA
firefoxpwa
];
home.pointerCursor = {
@ -80,6 +81,11 @@
};
home.sessionVariables.NIXOS_OZONE_WL = "1";
programs.firefox = {
enable = true;
nativeMessagingHosts = [pkgs.firefoxpwa];
};
# bar is required
imports = [
../../bar

View file

@ -1,6 +1,7 @@
{pkgs, ...}: {
home.packages = [
pkgs.helix
home.packages = with pkgs; [
helix
lsp-ai
];
home.file = {

View file

@ -1,5 +1,34 @@
##############################
## Configuration for lsp-ai ##
##############################
[language-server.lsp-ai]
command = "lsp-ai"
[language-server.lsp-ai.config.memory]
file_store = { }
[language-server.lsp-ai.config.models.codestral]
type = "mistral_fim"
fim_endpoint = "https://codestral.mistral.ai/v1/fim/completions"
model = "codestral-latest"
auth_token_env_var_name = "CODESTRAL_API_KEY"
[language-server.lsp-ai.config.completion]
model = "codestral"
[language-server.lsp-ai.config.completion.parameters]
max_tokens = 64
max_context = 1024
#################################
## Configuration for languages ##
#################################
[[language]]
name = "rust"
language-servers = [ "rust-analyzer", "lsp-ai" ]
[language.debugger]
command = "codelldb"
@ -20,7 +49,7 @@ runInTerminal = false
[[language]]
name = "python"
language-servers = [ "pyright", "ruff" ]
language-servers = [ "pyright", "ruff", "lsp-ai" ]
[language-server.pyright.config.python.analysis]
typeCheckingMode = "basic"
@ -73,7 +102,7 @@ formatter = { command = 'prettier', args = ["--parser", "css"] }
name = "scss"
formatter = { command = "prettier", args = ["--stdin-filepath", "dummy.scss"] }
indent = { tab-width = 4, unit = "\t" }
language-servers = ["vscode-css-language-server"]
language-servers = ["vscode-css-language-server", "lsp-ai"]
auto-format = true
[[language]]