Added Org languageserver to ZED
This commit is contained in:
@@ -41,6 +41,7 @@ in
|
||||
"nix"
|
||||
"toml"
|
||||
"rust"
|
||||
"org-mode"
|
||||
];
|
||||
# Zed AI: Ollama als provider
|
||||
# Zed kan modellen auto-discoveren die jij met Ollama gepulld hebt.
|
||||
@@ -49,7 +50,6 @@ in
|
||||
ollama = {
|
||||
api_url = "http://localhost:11434";
|
||||
auto_discover = true;
|
||||
|
||||
# Optioneel: zet een grotere context voor alle Ollama modellen
|
||||
# (Zed stuurt dit als `num_ctx` naar Ollama)
|
||||
context_window = 8192;
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
wayland.windowManager.hyprland = {
|
||||
# Load the Hyprexpo plugin (from nixpkgs)
|
||||
|
||||
@@ -5,32 +5,27 @@
|
||||
vim.enable = true;
|
||||
ripgrep.enable = true;
|
||||
btop.enable = true;
|
||||
|
||||
fzf = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
|
||||
zoxide = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
|
||||
eza = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
|
||||
direnv = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
enableBashIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
# Zsh-specific config belongs here
|
||||
zsh = {
|
||||
# for emacs-eat package
|
||||
@@ -39,7 +34,6 @@
|
||||
source "$EAT_SHELL_INTEGRATION_DIR/zsh"
|
||||
'';
|
||||
};
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
|
||||
@@ -47,7 +47,6 @@ let
|
||||
lines;
|
||||
in
|
||||
folded.sections;
|
||||
|
||||
enabledSections = parseSections (readMaybe enabledFile);
|
||||
aliasSections = parseSections (readMaybe aliasesFile);
|
||||
# [enabled_shells] lines: key = yes/no
|
||||
|
||||
Reference in New Issue
Block a user