Compare commits

..

7 Commits

7 changed files with 10 additions and 23 deletions

View File

@ -67,7 +67,7 @@
}; };
aliases = { aliases = {
graph = "log --graph --all --max-count 32"; graph = "log --graph";
}; };
ignores = [ ignores = [

View File

@ -14,6 +14,10 @@
ssh smartcan "systemctl restart smartcan-''${1}" ssh smartcan "systemctl restart smartcan-''${1}"
} }
function fu-build {
./kas-container build kas/kas-ttc-image-horsch.yml
}
function fu-reboot { function fu-reboot {
ssh fusion "reboot" ssh fusion "reboot"
} }

View File

@ -89,10 +89,6 @@
nvim-dap nvim-dap
nvim-dap-ui nvim-dap-ui
# neorg
neorg
neorg-telescope
# vim-wiki # vim-wiki
vimwiki vimwiki
]; ];
@ -167,7 +163,6 @@
${builtins.readFile ./project-nvim.lua } ${builtins.readFile ./project-nvim.lua }
${builtins.readFile ./dap.lua } ${builtins.readFile ./dap.lua }
${builtins.readFile ./neorg.lua }
${builtins.readFile ./illuminate.lua } ${builtins.readFile ./illuminate.lua }
${builtins.readFile ./wilder.lua } ${builtins.readFile ./wilder.lua }

View File

@ -1,16 +0,0 @@
local neorg = require("neorg")
neorg.setup({
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
notes = "~/notes",
},
default_workspace = "notes",
},
},
}
})

View File

@ -91,3 +91,5 @@ require('nvim-treesitter.configs').setup({
}, },
}, },
}) })
vim.treesitter.language.register("markdown", "vimwiki")

View File

@ -2,7 +2,9 @@
{ {
programs.eza = { programs.eza = {
enable = true; enable = true;
enableZshIntegration = true;
git = true; git = true;
icons = true;
extraOptions = [ "--group-directories-first" ]; extraOptions = [ "--group-directories-first" ];
}; };
} }

View File

@ -3,7 +3,7 @@
{ {
home.shellAliases = { home.shellAliases = {
g = "git"; g = "git";
gg = "git graph"; gg = "git graph --all --max-count 32";
gs = "git status"; gs = "git status";
gd = "git diff"; gd = "git diff";
k = "kubectl"; k = "kubectl";