]> git.localhorst.tv Git - nvim-config.git/commitdiff
disable auto formatting and inlay hints
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 16 Sep 2024 09:21:55 +0000 (11:21 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Mon, 16 Sep 2024 09:21:55 +0000 (11:21 +0200)
.gitignore
lua/config/options.lua
lua/plugins/lspconfig.lua [new file with mode: 0644]

index cc5457ab807fad274a186d863d5b7c225948363d..6ed8d1de5de81b91774f81a2c80d62bfe70f400d 100644 (file)
@@ -6,3 +6,6 @@ debug
 foo.*
 *.log
 data
+
+lazy-lock.json
+lazyvim.json
index 3ea1454fa3580ee1ca5e9e9e03b87e5269aed64b..ceeb0892b4cbdd665f0c8c0ba9f749774a679fad 100644 (file)
@@ -1,3 +1,5 @@
 -- Options are automatically loaded before lazy.nvim startup
 -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
 -- Add any additional options here
+
+vim.g.autoformat = false
diff --git a/lua/plugins/lspconfig.lua b/lua/plugins/lspconfig.lua
new file mode 100644 (file)
index 0000000..707fb81
--- /dev/null
@@ -0,0 +1,8 @@
+return {
+  "neovim/nvim-lspconfig",
+  opts = {
+    inlay_hints = {
+      enabled = false,
+    },
+  },
+}