mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 19:46:20 +00:00
feat: update system
This commit is contained in:
@@ -180,7 +180,7 @@
|
||||
gnome.gnome-clocks
|
||||
gnome.gnome-calculator
|
||||
gnome.simple-scan
|
||||
gnome.gedit
|
||||
gedit
|
||||
gnome.eog
|
||||
gnome.geary
|
||||
gnome.ghex
|
||||
|
||||
@@ -14,6 +14,9 @@
|
||||
|
||||
# media
|
||||
jellyfin-media-player
|
||||
youtube-dl
|
||||
tartube
|
||||
yt-dlp
|
||||
# youtube-music.override {electron = pkgs.electron_28;})
|
||||
vlc
|
||||
makemkv
|
||||
@@ -54,9 +57,9 @@
|
||||
|
||||
# development
|
||||
(import ./intellij.nix {inherit pkgs;})
|
||||
jetbrains.rust-rover
|
||||
insomnia
|
||||
avalonia-ilspy
|
||||
ghidra
|
||||
|
||||
# gaming
|
||||
steam
|
||||
|
||||
@@ -143,6 +143,42 @@ in {
|
||||
lua = true;
|
||||
action = "require('actions-preview').code_actions";
|
||||
}
|
||||
{
|
||||
key = "<leader>xx";
|
||||
mode = "n";
|
||||
lua = true;
|
||||
action = "require('trouble').toggle";
|
||||
}
|
||||
{
|
||||
key = "<leader>xw";
|
||||
mode = "n";
|
||||
lua = true;
|
||||
action = "function() require('trouble').toggle('workspace_diagnostics') end";
|
||||
}
|
||||
{
|
||||
key = "<leader>xd";
|
||||
mode = "n";
|
||||
lua = true;
|
||||
action = "function() require('trouble').toggle('document_diagnostics') end";
|
||||
}
|
||||
{
|
||||
key = "<leader>xq";
|
||||
mode = "n";
|
||||
lua = true;
|
||||
action = "function() require('trouble').toggle('quickfix') end";
|
||||
}
|
||||
{
|
||||
key = "<leader>xl";
|
||||
mode = "n";
|
||||
lua = true;
|
||||
action = "function() require('trouble').toggle('loclist') end";
|
||||
}
|
||||
{
|
||||
key = "gR";
|
||||
mode = "n";
|
||||
lua = true;
|
||||
action = "function() require('trouble').toggle('lsp_references') end";
|
||||
}
|
||||
];
|
||||
|
||||
globals = {
|
||||
@@ -414,6 +450,11 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
trouble = {
|
||||
enable = true;
|
||||
useDiagnosticSigns = true;
|
||||
};
|
||||
|
||||
treesitter = {
|
||||
enable = true;
|
||||
indent = true;
|
||||
|
||||
Reference in New Issue
Block a user