home/common | rm jot, add obsidian.nvim
This commit is contained in:
parent
c1fff77c33
commit
04b284df7e
2 changed files with 23 additions and 1 deletions
|
|
@ -55,7 +55,6 @@
|
|||
iftop
|
||||
immich-cli
|
||||
iw
|
||||
jot
|
||||
jq
|
||||
keychain
|
||||
keyutils
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@
|
|||
nixvim = {
|
||||
globals.mapleader = " ";
|
||||
keymaps = [
|
||||
{
|
||||
key = "<leader>t";
|
||||
action = ":Telescope buffers<CR>";
|
||||
}
|
||||
{
|
||||
key = "<leader>e";
|
||||
action = ":Neotree<CR>";
|
||||
|
|
@ -58,6 +62,25 @@
|
|||
none-ls.enable = true;
|
||||
nvim-autopairs.enable = true;
|
||||
nvim-tree.enable = true;
|
||||
obsidian = {
|
||||
enable = true;
|
||||
settings = {
|
||||
daily_notes = {
|
||||
date_format = "%Y-%m-%d";
|
||||
folder = "Daily";
|
||||
};
|
||||
workspaces = [
|
||||
{
|
||||
name = "main";
|
||||
path = "~/.obsidian/main";
|
||||
}
|
||||
{
|
||||
name = "journal";
|
||||
path = "~/.obsidian/journal";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
project-nvim.enable = true;
|
||||
telescope.enable = true;
|
||||
web-devicons.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue