Compare commits
7 Commits
36e38b8ff4
...
aaf401c32c
Author | SHA1 | Date |
---|---|---|
mandlm | aaf401c32c | |
mandlm | 61e21a8720 | |
mandlm | 911222e679 | |
mandlm | 5081f01fc2 | |
mandlm | 8636ba290d | |
mandlm | 10fec2c615 | |
mandlm | 22a18418ac |
|
@ -67,7 +67,7 @@
|
|||
};
|
||||
|
||||
aliases = {
|
||||
graph = "log --graph --all --max-count 32";
|
||||
graph = "log --graph";
|
||||
};
|
||||
|
||||
ignores = [
|
||||
|
|
|
@ -14,6 +14,10 @@
|
|||
ssh smartcan "systemctl restart smartcan-''${1}"
|
||||
}
|
||||
|
||||
function fu-build {
|
||||
./kas-container build kas/kas-ttc-image-horsch.yml
|
||||
}
|
||||
|
||||
function fu-reboot {
|
||||
ssh fusion "reboot"
|
||||
}
|
||||
|
|
|
@ -89,10 +89,6 @@
|
|||
nvim-dap
|
||||
nvim-dap-ui
|
||||
|
||||
# neorg
|
||||
neorg
|
||||
neorg-telescope
|
||||
|
||||
# vim-wiki
|
||||
vimwiki
|
||||
];
|
||||
|
@ -167,7 +163,6 @@
|
|||
|
||||
${builtins.readFile ./project-nvim.lua }
|
||||
${builtins.readFile ./dap.lua }
|
||||
${builtins.readFile ./neorg.lua }
|
||||
${builtins.readFile ./illuminate.lua }
|
||||
${builtins.readFile ./wilder.lua }
|
||||
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
local neorg = require("neorg")
|
||||
|
||||
neorg.setup({
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.concealer"] = {},
|
||||
["core.dirman"] = {
|
||||
config = {
|
||||
workspaces = {
|
||||
notes = "~/notes",
|
||||
},
|
||||
default_workspace = "notes",
|
||||
},
|
||||
},
|
||||
}
|
||||
})
|
|
@ -91,3 +91,5 @@ require('nvim-treesitter.configs').setup({
|
|||
},
|
||||
},
|
||||
})
|
||||
|
||||
vim.treesitter.language.register("markdown", "vimwiki")
|
||||
|
|
|
@ -2,7 +2,9 @@
|
|||
{
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
git = true;
|
||||
icons = true;
|
||||
extraOptions = [ "--group-directories-first" ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
home.shellAliases = {
|
||||
g = "git";
|
||||
gg = "git graph";
|
||||
gg = "git graph --all --max-count 32";
|
||||
gs = "git status";
|
||||
gd = "git diff";
|
||||
k = "kubectl";
|
||||
|
|
Loading…
Reference in New Issue