Compare commits
No commits in common. "28d4787d085a32f4e8013134e294b4dd5e3428ba" and "76ce2518e12f4779694a898cc4b9be307883e7e6" have entirely different histories.
28d4787d08
...
76ce2518e1
2 changed files with 0 additions and 11 deletions
|
@ -28,16 +28,6 @@ return { -- Collection of various small independent plugins/modules
|
||||||
-- Simple startup screen
|
-- Simple startup screen
|
||||||
require('mini.starter').setup()
|
require('mini.starter').setup()
|
||||||
|
|
||||||
-- Highlight word under cursor.
|
|
||||||
-- Useful for motions similar to 'diw' and 'ciw'
|
|
||||||
-- as well as # and * searches
|
|
||||||
require('mini.cursorword').setup()
|
|
||||||
|
|
||||||
-- Trailspace: highlight trailing whitespace
|
|
||||||
-- Trim all trailing whitespace with MiniTrailspace.trim().
|
|
||||||
-- Trim all trailing empty lines with MiniTrailspace.trim_last_lines().
|
|
||||||
require('mini.trailspace').setup()
|
|
||||||
|
|
||||||
-- Simple and easy statusline.
|
-- Simple and easy statusline.
|
||||||
-- You could remove this setup call if you don't like it,
|
-- You could remove this setup call if you don't like it,
|
||||||
-- and try some other statusline plugin
|
-- and try some other statusline plugin
|
||||||
|
|
|
@ -138,7 +138,6 @@ return { -- LSP Configuration & Plugins
|
||||||
--
|
--
|
||||||
-- This may be unwanted, since they displace some of your code
|
-- This may be unwanted, since they displace some of your code
|
||||||
if client and client.server_capabilities.inlayHintProvider and vim.lsp.inlay_hint then
|
if client and client.server_capabilities.inlayHintProvider and vim.lsp.inlay_hint then
|
||||||
vim.lsp.inlay_hint.enable(true)
|
|
||||||
map('<leader>th', function()
|
map('<leader>th', function()
|
||||||
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())
|
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())
|
||||||
end, '[T]oggle Inlay [H]ints')
|
end, '[T]oggle Inlay [H]ints')
|
||||||
|
|
Loading…
Add table
Reference in a new issue