diff options
author | Squibid <me@zacharyscheiman.com> | 2023-07-16 21:28:06 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-07-16 21:28:06 -0400 |
commit | 1b288fe932ebe91e76f4af2e166ad242656e6240 (patch) | |
tree | f8112237310f0f09991328ac328ff3bb335b67b8 /after/plugin/mason.lua | |
parent | 169aa170a216f07af36a55f1305f8eea594aa2ef (diff) | |
download | nvim-1b288fe932ebe91e76f4af2e166ad242656e6240.tar.gz nvim-1b288fe932ebe91e76f4af2e166ad242656e6240.tar.bz2 nvim-1b288fe932ebe91e76f4af2e166ad242656e6240.zip |
add comment to ftplugin/java.lua, and fix some typos
Diffstat (limited to '')
-rw-r--r-- | after/plugin/mason.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/after/plugin/mason.lua b/after/plugin/mason.lua index ccd812e..fe4895a 100644 --- a/after/plugin/mason.lua +++ b/after/plugin/mason.lua @@ -3,7 +3,7 @@ if not status_ok then return end -mason.setup({ +mason.setup { ui = { border = "shadow", width = 0.6, @@ -26,4 +26,4 @@ mason.setup({ cancel_installation = "<C-c>", -- Keymap to cancel a package installation apply_language_filter = "<C-f>", -- Keymap to apply language filter }, -}) +} |