This commit is contained in:
Thomas Ruoff
2025-05-09 23:08:00 +02:00
parent c367e56165
commit d36059593c
2 changed files with 2 additions and 6 deletions

View File

@@ -12,9 +12,7 @@ return {
-- Build Step is needed for regex support in snippets.
-- This step is not supported in many windows environments.
-- Remove the below condition to re-enable on windows.
if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then
return
end
if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then return end
return 'make install_jsregexp'
end)(),
dependencies = {

View File

@@ -27,9 +27,7 @@ return {
-- default behavior. For example, here we set the section for
-- cursor location to LINE:COLUMN
---@diagnostic disable-next-line: duplicate-set-field
statusline.section_location = function()
return '%2l:%-2v'
end
statusline.section_location = function() return '%2l:%-2v' end
require('mini.pairs').setup()