Compare commits

..

3 commits

2 changed files with 17 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ globalData, ... }:
{ globalData, pkgs, ... }:
{
imports = [
@ -31,4 +31,13 @@
virtualisation.docker.enable = true;
# Torrent client
services.transmission.enable = true;
services.ollama = {
enable = true;
package = pkgs.unstable.ollama;
};
environment.systemPackages = with pkgs.unstable; [
oterm
];
}

View file

@ -25,7 +25,7 @@ in
vim.opt = {
list = true;
formatoptions = "croqanlj";
formatoptions = "croqnlj";
};
buffer.filetype = {
@ -73,6 +73,12 @@ in
# Enable fast navigation between windows
vim.keymap.set = map (k: { mode = "n"; lhs = ctrl k; rhs = "${ctrl "w"}${k}"; }) [ "h" "l" "j" "k" ];
plugin.ollama-nvim = {
enable = true;
name = "ollama";
setupSettings = { };
};
plugin.nlsp-settings-nvim = {
enable = true;
name = "nlspsettings";