diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2024-02-10 20:34:55 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2024-02-10 20:34:55 -0600 |
commit | e9dce986e9743269e4a8da4129de3000660db103 (patch) | |
tree | 61b1d3c3c1387373fb3503187e60f27c5ad9b2a0 /lua/plugins | |
parent | 82e0f37eb30e16b8c57ecb1b9e239b5fd75ed6f7 (diff) |
fix(standalone): no extra opts needed
Diffstat (limited to 'lua/plugins')
-rw-r--r-- | lua/plugins/standalone.lua | 8 |
1 files changed, 4 insertions, 4 deletions
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 = {} }, } |