@@ -134,8 +134,8 @@ vim.opt.splitright = true
134
134
vim .opt .splitbelow = true
135
135
136
136
-- Sets how neovim will display certain whitespace in the editor.
137
- -- See :help 'list'
138
- -- and :help 'listchars'
137
+ -- See ` :help 'list'`
138
+ -- and ` :help 'listchars'`
139
139
vim .opt .list = true
140
140
vim .opt .listchars = { tab = ' » ' , trail = ' ·' , nbsp = ' ␣' }
141
141
@@ -185,7 +185,7 @@ vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower win
185
185
vim .keymap .set (' n' , ' <C-k>' , ' <C-w><C-k>' , { desc = ' Move focus to the upper window' })
186
186
187
187
-- [[ Basic Autocommands ]]
188
- -- See :help lua-guide-autocommands
188
+ -- See ` :help lua-guide-autocommands`
189
189
190
190
-- Highlight when yanking (copying) text
191
191
-- Try it with `yap` in normal mode
@@ -261,7 +261,7 @@ require('lazy').setup {
261
261
-- event = 'VeryLazy'
262
262
--
263
263
-- which loads which-key after all the UI elements are loaded. Events can be
264
- -- normal autocommands events (:help autocomd -events).
264
+ -- normal autocommands events (` :help autocmd -events` ).
265
265
--
266
266
-- Then, because we use the `config` key, the configuration only runs
267
267
-- after the plugin has been loaded:
@@ -434,7 +434,7 @@ require('lazy').setup {
434
434
-- Neovim. This is where `mason` and related plugins come into play.
435
435
--
436
436
-- If you're wondering about lsp vs treesitter, you can check out the wonderfully
437
- -- and elegantly composed help section, :help lsp-vs-treesitter
437
+ -- and elegantly composed help section, ` :help lsp-vs-treesitter`
438
438
439
439
-- This function gets run when an LSP attaches to a particular buffer.
440
440
-- That is to say, every time a new file is opened that is associated with
@@ -742,7 +742,7 @@ require('lazy').setup {
742
742
-- Better Around/Inside textobjects
743
743
--
744
744
-- Examples:
745
- -- - va) - [V]isually select [A]round [)]parenthen
745
+ -- - va) - [V]isually select [A]round [)]paren
746
746
-- - yinq - [Y]ank [I]nside [N]ext [']quote
747
747
-- - ci' - [C]hange [I]nside [']quote
748
748
require (' mini.ai' ).setup { n_lines = 500 }
@@ -760,7 +760,7 @@ require('lazy').setup {
760
760
local statusline = require ' mini.statusline'
761
761
statusline .setup ()
762
762
763
- -- You can confiure sections in the statusline by overriding their
763
+ -- You can configure sections in the statusline by overriding their
764
764
-- default behavior. For example, here we disable the section for
765
765
-- cursor information because line numbers are already enabled
766
766
--- @diagnostic disable-next-line : duplicate-set-field
@@ -791,7 +791,7 @@ require('lazy').setup {
791
791
-- There are additional nvim-treesitter modules that you can use to interact
792
792
-- with nvim-treesitter. You should go explore a few and see what interests you:
793
793
--
794
- -- - Incremental selection: Included, see :help nvim-treesitter-incremental-selection-mod
794
+ -- - Incremental selection: Included, see ` :help nvim-treesitter-incremental-selection-mod`
795
795
-- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context
796
796
-- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
797
797
end ,
@@ -813,7 +813,7 @@ require('lazy').setup {
813
813
-- This is the easiest way to modularize your config.
814
814
--
815
815
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
816
- -- For additional information see: :help lazy.nvim-lazy.nvim-structuring-your-plugins
816
+ -- For additional information, see ` :help lazy.nvim-lazy.nvim-structuring-your-plugins`
817
817
-- { import = 'custom.plugins' },
818
818
}
819
819
0 commit comments