1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

chore: update flake

This commit is contained in:
oddlama 2024-07-12 00:38:17 +02:00
parent 36c011b89b
commit 911f2954c6
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
5 changed files with 58 additions and 524 deletions

View file

@ -23,8 +23,8 @@
'';
});
in {
home.packages = [
pwndbgWithDebuginfod
home.packages = builtins.trace "WARN: reenable pwndbg later!" [
#pwndbgWithDebuginfod
pkgs.hotspot
];

View file

@ -10,20 +10,19 @@
plugins = {
treesitter = {
enable = true;
# TODO (autocmd * zR needed) folding = true;
indent = true;
settings = {
indent.enable = true;
incrementalSelection = {
enable = true;
keymaps = {
initSelection = "<C-Space>";
nodeIncremental = "<C-Space>";
scopeIncremental = "<C-S-Space>";
nodeDecremental = "<C-B>";
incremental_selection = {
enable = true;
keymaps = {
init_selection = "<C-Space>";
node_incremental = "<C-Space>";
scope_incremental = "<C-S-Space>";
node_decremental = "<C-B>";
};
};
};
nixvimInjections = true;
};
# Cargo.toml dependency completion
@ -37,7 +36,7 @@
rustaceanvim = {
enable = true;
settings = {
server.settings.files.excludeDirs = [".direnv"];
server.default_settings.files.excludeDirs = [".direnv"];
dap.autoloadConfigurations = true;
dap.adapter = let
code-lldb = pkgs.vscode-extensions.vadimcn.vscode-lldb;