aboutsummaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'nvim')
-rw-r--r--nvim/ftplugin/taskedit.lua6
-rw-r--r--nvim/ftplugin/taskwarrior.lua5
-rw-r--r--nvim/lua/plugins/format.lua2
-rw-r--r--nvim/lua/plugins/lsp.lua4
4 files changed, 6 insertions, 11 deletions
diff --git a/nvim/ftplugin/taskedit.lua b/nvim/ftplugin/taskedit.lua
index a905acb..ee8fdf0 100644
--- a/nvim/ftplugin/taskedit.lua
+++ b/nvim/ftplugin/taskedit.lua
@@ -1 +1,5 @@
1vim.cmd.runtime("ftplugin/taskwarrior.lua") 1local opt = vim.opt_local
2
3opt.autoindent = false
4opt.indentexpr = ""
5opt.indentkeys = ""
diff --git a/nvim/ftplugin/taskwarrior.lua b/nvim/ftplugin/taskwarrior.lua
deleted file mode 100644
index ee8fdf0..0000000
--- a/nvim/ftplugin/taskwarrior.lua
+++ /dev/null
@@ -1,5 +0,0 @@
1local opt = vim.opt_local
2
3opt.autoindent = false
4opt.indentexpr = ""
5opt.indentkeys = ""
diff --git a/nvim/lua/plugins/format.lua b/nvim/lua/plugins/format.lua
index d8f96e2..a8d63b8 100644
--- a/nvim/lua/plugins/format.lua
+++ b/nvim/lua/plugins/format.lua
@@ -1,6 +1,6 @@
1-- Verfügbare Formater: https://github.com/stevearc/conform.nvim/tree/master/lua/conform/formatters 1-- Verfügbare Formater: https://github.com/stevearc/conform.nvim/tree/master/lua/conform/formatters
2 2
3local clang = {} 3local clang = {} -- absichtlich leer: c und cpp formatiert clangd, siehe default_format_opts.lsp_format
4local djlint = { "djlint" } -- pipx install djlint (macOS & FreeBSD); unter Windows kein winget-Paket, siehe neovim-windows-setup.md 4local djlint = { "djlint" } -- pipx install djlint (macOS & FreeBSD); unter Windows kein winget-Paket, siehe neovim-windows-setup.md
5local gawk = { "gawk" } -- brew install gawk, pkg install gawk 5local gawk = { "gawk" } -- brew install gawk, pkg install gawk
6local jq = { "jq" } -- brew install jq, pkg install jq 6local jq = { "jq" } -- brew install jq, pkg install jq
diff --git a/nvim/lua/plugins/lsp.lua b/nvim/lua/plugins/lsp.lua
index 8e50357..46892b5 100644
--- a/nvim/lua/plugins/lsp.lua
+++ b/nvim/lua/plugins/lsp.lua
@@ -34,10 +34,6 @@ return {
34 }, 34 },
35 } 35 }
36 36
37 vim.lsp.config.bashls = {
38 filetypes = { "sh", "bash" },
39 }
40
41 vim.lsp.config.clangd = { 37 vim.lsp.config.clangd = {
42 cmd = { 38 cmd = {
43 "clangd", 39 "clangd",