diff --git a/nix/common.nix b/nix/common.nix index d676d3d..2c349fd 100644 --- a/nix/common.nix +++ b/nix/common.nix @@ -50,9 +50,7 @@ #}; #home.shellAliases = { - # "ll" = "ls -la"; - #}; - # home.shellAliases = { + # "ll" = "ls -la"; # "t" = "tmuxp"; # "tl" = "tmuxp load"; # }; diff --git a/nix/user/dev.nix b/nix/user/dev.nix index 30e02c5..de91faf 100644 --- a/nix/user/dev.nix +++ b/nix/user/dev.nix @@ -6,6 +6,4 @@ enableZshIntegration = true; nix-direnv.enable = true; }; - - programs.ripgrep.enable = true; } diff --git a/nvim/base.lua b/nvim/base.lua index c83664b..b952b79 100644 --- a/nvim/base.lua +++ b/nvim/base.lua @@ -50,6 +50,7 @@ vim.opt.syntax = 'on' vim.opt.encoding = 'utf-8' vim.opt.completeopt = 'menu,menuone,noselect' vim.opt.termguicolors = true +vim.opt.conceallevel = 1 ---------------------------- diff --git a/nvim/plugins.lua b/nvim/plugins.lua index 23fc9ec..669c397 100644 --- a/nvim/plugins.lua +++ b/nvim/plugins.lua @@ -281,6 +281,15 @@ require("obsidian").setup({ 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({