From e40bc60628e4bcbef14508a7583d4e747f8934db Mon Sep 17 00:00:00 2001 From: pegasust Date: Wed, 23 Nov 2022 17:02:56 +0000 Subject: [PATCH] remove shade, inlay hints not showing --- neovim/init.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/neovim/init.lua b/neovim/init.lua index d44671c..a50703d 100644 --- a/neovim/init.lua +++ b/neovim/init.lua @@ -76,7 +76,6 @@ Plug('lukas-reineke/indent-blankline.nvim') -- identation lines on blank lines Plug('kyazdani42/nvim-web-devicons') -- icons for folder and filetypes Plug('m-demare/hlargs.nvim') -- highlights arguments; great for func prog Plug('folke/todo-comments.nvim') -- Highlights TODO -Plug('TaDaa/vimade') -- shade alternative -- other utilities Plug('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' }) @@ -377,6 +376,12 @@ remap('n', 'gs', function() require('neogit').open({}) end); -- LSP settings -- This function gets run when an LSP connects to a particular buffer. +require("inlay-hints").setup { + only_current_line = true, + eol = { + right_align = true, + } +} local on_attach = function(client, bufnr) -- NOTE: Remember that lua is a real programming language, and as such it is possible -- to define small helper and utility functions so you don't have to repeat yourself