From e9dce986e9743269e4a8da4129de3000660db103 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Sat, 10 Feb 2024 20:34:55 -0600 Subject: fix(standalone): no extra opts needed --- lua/plugins/standalone.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lua/plugins') diff --git a/lua/plugins/standalone.lua b/lua/plugins/standalone.lua index bfd9e18..8c3f528 100644 --- a/lua/plugins/standalone.lua +++ b/lua/plugins/standalone.lua @@ -1,9 +1,9 @@ return { -- Detect tabstop and shiftwidth automatically, -- uses .editorconfig https://editorconfig.org/ - { 'tpope/vim-sleuth', opts = {} }, - -- "gc" to comment visual regions/lines - { 'numToStr/Comment.nvim', opts = {} }, + 'tpope/vim-sleuth', -- required for nvim-qt on windows - { 'equalsraf/neovim-gui-shim', opts = {} }, + 'equalsraf/neovim-gui-shim', + -- "gc" to comment visual regions/lines + { 'numToStr/Comment.nvim', opts = {} }, } -- cgit v1.2.3-54-g00ecf