Change formatting

This commit is contained in:
2026-03-21 14:57:40 +01:00
parent 90f7ae975d
commit 93f0961709
2 changed files with 472 additions and 464 deletions

View File

@@ -86,6 +86,7 @@ return {
capabilities = capabilities,
on_attach = lsp_attach,
filetypes = { "typescript", "javascript", "typescriptreact", "javascriptreact", "javascript.jsx", "typescript.tsx", "vue" },
root_markers = { 'tsconfig.json', 'jsconfig.json', 'package.json', '.git' },
init_options = {
plugins = { {
name = '@vue/typescript-plugin',
@@ -100,6 +101,10 @@ return {
capabilities = capabilities,
on_attach = lsp_attach
})
vim.lsp.config('denols', {
capabilities = capabilities,
on_attach = lsp_attach
})
vim.lsp.config('gopls', {
capabilities = capabilities,
on_attach = lsp_attach

View File

@@ -4,7 +4,10 @@ return {
'vimwiki/vimwiki',
ft = { 'md', 'wiki', 'tex' },
config = function()
vim.g.vimwiki_list = { { path = '~/Documents/Buch/wiki', syntax = 'markdown', ext = '.md' } }
vim.g.vimwiki_list = {
{ path = '~/Documents/Buch/wiki', syntax = 'markdown', ext = '.md' },
{ path = '~/Notes', syntax = 'markdown', ext = '.md' },
}
end
},
--{ 'junegunn/goyo.vim' }, -- try replacing these 2 at some point because they don't work that well anymore