mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 10:21:31 +00:00
feat: notetaking
This commit is contained in:
parent
1027e6d58f
commit
bd6aa3808d
2 changed files with 100 additions and 3 deletions
35
flake.nix
35
flake.nix
|
@ -122,8 +122,8 @@
|
|||
gitsigns.enable = true;
|
||||
};
|
||||
vim.minimap = {
|
||||
minimap-vim.enable = true; # FIXME: this plugin has a dependency that needs to be installed
|
||||
codewindow.enable = false;
|
||||
minimap-vim.enable = false;
|
||||
codewindow.enable = true; # lighter, faster, and uses lua for configuration
|
||||
};
|
||||
vim.dashboard = {
|
||||
dashboard-nvim.enable = false;
|
||||
|
@ -135,7 +135,12 @@
|
|||
vim.utility = {
|
||||
colorizer.enable = true;
|
||||
icon-picker.enable = true;
|
||||
venn-nvim.enable = false; # FIXME: throws an error when the command is ran manually
|
||||
venn-nvim.enable = false; # FIXME throws an error when its commands are ran manually
|
||||
};
|
||||
|
||||
vim.notes = {
|
||||
obsidian.enable = false; # FIXME neovim fails to build if obsidian is enabled
|
||||
orgmode.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -511,6 +516,18 @@
|
|||
flake = false;
|
||||
};
|
||||
|
||||
# Note-taking
|
||||
|
||||
obsidian-nvim = {
|
||||
url = "github:epwalsh/obsidian.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
orgmode-nvim = {
|
||||
url = "github:nvim-orgmode/orgmode";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# Dependencies
|
||||
plenary-nvim = {
|
||||
# (required by crates-nvim)
|
||||
|
@ -523,5 +540,17 @@
|
|||
url = "github:stevearc/dressing.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
vim-markdown = {
|
||||
# (required by obsidian-nvim)
|
||||
url = "github:preservim/vim-markdown";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
tabular = {
|
||||
# (required by vim-markdown)
|
||||
url = "github:godlygeek/tabular";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue