aboutsummaryrefslogtreecommitdiff
path: root/.nvim.lua
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-07-14 19:30:03 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-07-14 19:30:03 +0200
commitd6735726d9cc6e98142e94001250076592279d36 (patch)
tree95d308a027495790af57479cacb064badea334d0 /.nvim.lua
parentcdb8a0928ddfe626a1ac0acd1ae63bc8e5b77355 (diff)
parent9558074af8ceef4dc2c3b168a0263775f8a377e0 (diff)
downloadkernel-d6735726d9cc6e98142e94001250076592279d36.tar.xz
kernel-d6735726d9cc6e98142e94001250076592279d36.zip
Merge branch 'fmorgner/develop/kstd-system-error' into 'develop'
kstd: implement system_error infrastructure See merge request teachos/kernel!54
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