Added Markdown Preview and the Obsidian plugins. Updated the Startup screen with links to Github Copilot and Obsidian Moved the helm-vim plugin from a seperate file into the lsp.nix file.
18 lines
367 B
Nix
18 lines
367 B
Nix
_: {
|
|
plugins = {
|
|
markdown-preview = {
|
|
enable = true;
|
|
settings = {
|
|
browser = "firefox";
|
|
echo_preview_url = true;
|
|
port = "6969";
|
|
preview_options = {
|
|
disable_filename = true;
|
|
disable_sync_scroll = true;
|
|
sync_scroll_type = "middle";
|
|
};
|
|
theme = "dark";
|
|
};
|
|
};
|
|
};
|
|
}
|