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
|
iftop
|
||||||
immich-cli
|
immich-cli
|
||||||
iw
|
iw
|
||||||
jot
|
|
||||||
jq
|
jq
|
||||||
keychain
|
keychain
|
||||||
keyutils
|
keyutils
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,10 @@
|
||||||
nixvim = {
|
nixvim = {
|
||||||
globals.mapleader = " ";
|
globals.mapleader = " ";
|
||||||
keymaps = [
|
keymaps = [
|
||||||
|
{
|
||||||
|
key = "<leader>t";
|
||||||
|
action = ":Telescope buffers<CR>";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
key = "<leader>e";
|
key = "<leader>e";
|
||||||
action = ":Neotree<CR>";
|
action = ":Neotree<CR>";
|
||||||
|
|
@ -58,6 +62,25 @@
|
||||||
none-ls.enable = true;
|
none-ls.enable = true;
|
||||||
nvim-autopairs.enable = true;
|
nvim-autopairs.enable = true;
|
||||||
nvim-tree.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;
|
project-nvim.enable = true;
|
||||||
telescope.enable = true;
|
telescope.enable = true;
|
||||||
web-devicons.enable = true;
|
web-devicons.enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue