fix(null_ls): remove

This commit is contained in:
ggdawson 2024-05-22 10:57:23 -06:00
parent 7028a2adb1
commit 792687ac4a
3 changed files with 63 additions and 63 deletions

View file

@ -41,7 +41,7 @@ vim.api.nvim_create_user_command(
'OpenInVSCode',
function(opts)
-- Using vim.fn.expand('%') to get the current file path
local filepath = vim.fn.expand('%:p') -- ':p' expands to full path
local filepath = vim.fn.expand('%:p') -- ':p' expands to full path
-- The command to open VS Code with the current file
os.execute('code ' .. filepath)
end,