From b9ac029bd2bfc42924a6c7ed538c8ae3de4833d0 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Mon, 15 Jun 2026 09:42:13 +0200 Subject: [PATCH] remove resolved todo --- nvim/.config/nvim/init.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index f11d160..4ae1849 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -343,8 +343,6 @@ end -- auto select compiler {{{1 do - -- TODO: vendor the compiler plugins so I can use e.g. basedpyright instead of pyright and add matching for failing tests in c using criterion. - -- did a similar thing for the vim config. local compiler_mapping = { dotnet={'*.csproj', '*.sln'}, pyright={'requirements.txt', 'pyproject.toml'}, @@ -385,7 +383,6 @@ do ---@param glob_pattern string ---@return boolean local function look_for_file(glob_pattern) - for dir in all_folders_till_root() do if file_exists(dir, glob_pattern) then return true