aboutsummaryrefslogtreecommitdiff
path: root/.nvim.lua
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-07-09 14:00:34 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-07-09 14:00:34 +0200
commita950ab85c994040de2737f3545a0f8c59289e80b (patch)
tree8adbc626edd5863d1f49205ae3ec6b8bf86f57c2 /.nvim.lua
parent14027b42ef30075dedbe4f08328da65e6cc308a9 (diff)
downloadkernel-a950ab85c994040de2737f3545a0f8c59289e80b.tar.xz
kernel-a950ab85c994040de2737f3545a0f8c59289e80b.zip
ide: remove unnecessary filetype overrides
Diffstat (limited to '.nvim.lua')
-rw-r--r--.nvim.lua11
1 files changed, 0 insertions, 11 deletions
diff --git a/.nvim.lua b/.nvim.lua
index 0f8f5119..ac52b6db 100644
--- a/.nvim.lua
+++ b/.nvim.lua
@@ -7,17 +7,6 @@ vim.opt.fixeol = false
-- Enable Doxygen
vim.g.load_doxygen_syntax = true
--- C++
-vim.filetype.add({
- pattern = {
- [".*/libs/kstd/kstd/.*"] = function(path, _)
- if not path:match("%.[^/]+$") then
- return "cpp"
- end
- end
- }
-})
-
-- Debugging
local dap = require("dap")
local qemu_job_id = nil