Compare commits
3 Commits
aaf401c32c
...
36e38b8ff4
Author | SHA1 | Date |
---|---|---|
mandlm | 36e38b8ff4 | |
mandlm | d1627cef60 | |
mandlm | 50c22738b3 |
|
@ -67,7 +67,7 @@
|
|||
};
|
||||
|
||||
aliases = {
|
||||
graph = "log --graph";
|
||||
graph = "log --graph --all --max-count 32";
|
||||
};
|
||||
|
||||
ignores = [
|
||||
|
|
|
@ -14,10 +14,6 @@
|
|||
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,6 +89,10 @@
|
|||
nvim-dap
|
||||
nvim-dap-ui
|
||||
|
||||
# neorg
|
||||
neorg
|
||||
neorg-telescope
|
||||
|
||||
# vim-wiki
|
||||
vimwiki
|
||||
];
|
||||
|
@ -163,6 +167,7 @@
|
|||
|
||||
${builtins.readFile ./project-nvim.lua }
|
||||
${builtins.readFile ./dap.lua }
|
||||
${builtins.readFile ./neorg.lua }
|
||||
${builtins.readFile ./illuminate.lua }
|
||||
${builtins.readFile ./wilder.lua }
|
||||
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
local neorg = require("neorg")
|
||||
|
||||
neorg.setup({
|
||||
load = {
|
||||
["core.defaults"] = {},
|
||||
["core.concealer"] = {},
|
||||
["core.dirman"] = {
|
||||
config = {
|
||||
workspaces = {
|
||||
notes = "~/notes",
|
||||
},
|
||||
default_workspace = "notes",
|
||||
},
|
||||
},
|
||||
}
|
||||
})
|
|
@ -91,5 +91,3 @@ require('nvim-treesitter.configs').setup({
|
|||
},
|
||||
},
|
||||
})
|
||||
|
||||
vim.treesitter.language.register("markdown", "vimwiki")
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
{
|
||||
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 --all --max-count 32";
|
||||
gg = "git graph";
|
||||
gs = "git status";
|
||||
gd = "git diff";
|
||||
k = "kubectl";
|
||||
|
|
Loading…
Reference in New Issue