commit 9dce8f5aa93289eec48bdeaa8731229e054542d2
parent 23bd2c4e173a5e2750a04e615283bb45de685330
Author: Tomas Nemec <nemi@skaut.cz>
Date: Sun, 26 Dec 2021 14:54:25 +0100
update
Diffstat:
3 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/lua/tms/lsp/servers.lua b/lua/tms/lsp/servers.lua
@@ -7,8 +7,6 @@ M.setup = function(name, opts)
return opts
end
--- Servers
-
M.emmet_ls = function(opts)
opts.root_dir = require('lspconfig').util.root_pattern('.git', vim.fn.getcwd())
return opts
diff --git a/lua/tms/p/nullls.lua b/lua/tms/p/nullls.lua
@@ -29,7 +29,7 @@ M.setup = function()
sources = {
-- formatting
builtins.formatting.prettier.with {
- filetypes = {'html', 'json', 'yaml', 'markdown', 'css', 'scss'},
+ filetypes = {'html', 'yaml', 'markdown', 'css', 'scss'},
args = h.range_formatting_args_factory({
'--config',
vim.fn.expand('$CONFIG/prettier/config.yaml'),
diff --git a/lua/tms/plugins.lua b/lua/tms/plugins.lua
@@ -200,6 +200,8 @@ return packer.startup({
end,
}
use {'luukvbaal/stabilize.nvim'}
+
+ -- Notes
use {
'nvim-neorg/neorg',
requires = {'nvim-lua/plenary.nvim'},
@@ -403,9 +405,11 @@ return packer.startup({
for debugger, _ in pairs(dbg_list) do dap_install.config(debugger, {}) end
end,
}
- use {'theHamsta/nvim-dap-virtual-text', after = {'nvim-dap'}, config = function()
- require('nvim-dap-virtual-text').setup();
- end}
+ use {
+ 'theHamsta/nvim-dap-virtual-text',
+ after = {'nvim-dap'},
+ config = function() require('nvim-dap-virtual-text').setup(); end,
+ }
-- treesitter
use {