Merge branch 'master' of github.com:roodletoof/dotfiles

This commit is contained in:
Ivar Fatland
2026-05-09 22:12:14 +02:00
2 changed files with 1 additions and 14 deletions
+1
View File
@@ -42,6 +42,7 @@ map <leader>oe <Action>(ShowErrorDescription)
map <leader>rn <Action>(RenameElement)
map <leader>fm <Action>(ReformatCode)
map <leader>rf <Action>(Refactorings.QuickListPopupAction)
map <c-y> <Action>(EditorChooseLookupItem)
nnoremap <c-h> <c-w>h
nnoremap <c-j> <c-w>j
-14
View File
@@ -606,20 +606,6 @@ require'lazy'.setup{ --{{{1
},
},
},
{ "seblyng/roslyn.nvim", --{{{2
opts = {
---function to pick which .sln file to use when opening a cs file
---@param targets string[]
choose_target=function (targets)
if targets == nil then return end
if #targets == 0 then return end
table.sort(targets, function(a, b)
return #a < #b
end)
return targets[1]
end
},
},
{ 'neovim/nvim-lspconfig', --{{{2
dependencies = {
'williamboman/mason.nvim',