Minor things
This commit is contained in:
@ -50,9 +50,7 @@
|
|||||||
#};
|
#};
|
||||||
|
|
||||||
#home.shellAliases = {
|
#home.shellAliases = {
|
||||||
# "ll" = "ls -la";
|
# "ll" = "ls -la";
|
||||||
#};
|
|
||||||
# home.shellAliases = {
|
|
||||||
# "t" = "tmuxp";
|
# "t" = "tmuxp";
|
||||||
# "tl" = "tmuxp load";
|
# "tl" = "tmuxp load";
|
||||||
# };
|
# };
|
||||||
|
|||||||
@ -6,6 +6,4 @@
|
|||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.ripgrep.enable = true;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -50,6 +50,7 @@ vim.opt.syntax = 'on'
|
|||||||
vim.opt.encoding = 'utf-8'
|
vim.opt.encoding = 'utf-8'
|
||||||
vim.opt.completeopt = 'menu,menuone,noselect'
|
vim.opt.completeopt = 'menu,menuone,noselect'
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
|
vim.opt.conceallevel = 1
|
||||||
|
|
||||||
|
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|||||||
@ -281,6 +281,15 @@ require("obsidian").setup({
|
|||||||
path = "~/Documents/notes/fromjoplin",
|
path = "~/Documents/notes/fromjoplin",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
ui = {
|
||||||
|
checkboxes = {
|
||||||
|
[" "] = { char = "", hl_group = "ObsidianTodo" },
|
||||||
|
[">"] = { char = "", hl_group = "ObsidianRightArrow" },
|
||||||
|
["x"] = { char = "", hl_group = "ObsidianDone" },
|
||||||
|
["~"] = { char = "", hl_group = "ObsidianTilde" },
|
||||||
|
["!"] = { char = "", hl_group = "ObsidianImportant" },
|
||||||
|
},
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
require("conform").setup({
|
require("conform").setup({
|
||||||
|
|||||||
Reference in New Issue
Block a user