feat: add Markdown Preview and Obsidian, update startup screen and cleanup lsp config (#8)

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.
This commit is contained in:
Roel de Cort 2024-06-23 00:26:19 +02:00 committed by GitHub
parent 5112946501
commit 536677058b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 70 additions and 8 deletions

View file

@ -2,6 +2,7 @@
plugins = {
lsp-lines = {enable = true;};
lsp-format = {enable = true;};
helm = {enable = true;};
lsp = {
enable = true;
servers = {
@ -15,7 +16,18 @@
tsserver = {enable = true;};
ansiblels = {enable = true;};
jsonls = {enable = true;};
helm-ls = {enable = true;};
helm-ls = {
enable = true;
extraOptions = {
settings = {
"helm-ls" = {
yamlls = {
path = "${pkgs.yaml-language-server}/bin/yaml-language-server";
};
};
};
};
};
yamlls = {
enable = true;
extraOptions = {

View file

@ -1,5 +0,0 @@
_: {
plugins.helm = {
enable = true;
};
}