Use a more consistent table element access style (#2914)

This commit is contained in:
Hackcraft_
2024-07-05 20:35:52 +05:30
committed by GitHub
parent 7b73d1111c
commit 46088dd73e
+4 -4
View File
@@ -49,10 +49,10 @@ opt.whichwrap:append "<>[]hl"
-- g.mapleader = " " -- g.mapleader = " "
-- disable some default providers -- disable some default providers
g["loaded_node_provider"] = 0 g.loaded_node_provider = 0
g["loaded_python3_provider"] = 0 g.loaded_python3_provider = 0
g["loaded_perl_provider"] = 0 g.loaded_perl_provider = 0
g["loaded_ruby_provider"] = 0 g.loaded_ruby_provider = 0
-- add binaries installed by mason.nvim to path -- add binaries installed by mason.nvim to path
local is_windows = vim.fn.has "win32" ~= 0 local is_windows = vim.fn.has "win32" ~= 0