Skip to content

Commit

Permalink
wrapping should work properly. Probably.
Browse files Browse the repository at this point in the history
  • Loading branch information
HE7086 committed Jul 15, 2023
1 parent 2f1cd2b commit 55f3d40
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nvim/.config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,12 @@ autocmd("FileType", {

vim.filetype.add({extension = {wgsl = "wgsl"}})

command("LU", "Lazy update", {})
command("LU", "lua Update_All()", {})
function Update_All()
vim.api.nvim_command("Lazy update")
vim.api.nvim_command("MasonUpdate")
vim.api.nvim_command("TSUpdate")
end

-------------------- END OF SETTINGS --------------------
vim.g.hlsearch = false -- does this work?

0 comments on commit 55f3d40

Please sign in to comment.