all repos

init.lua @ c179a39f9e405c0a7b65396d4661d761e64374f0

my nvim config
2 files changed, 3 insertions(+), 1 deletions(-)
enable ghost text for cmp
Author: neoteny ss2316544@gmail.com
Committed at: 2021-11-24 15:20:20 +0200
Parent: cbfa864
M lua/options.lua

@@ -20,7 +20,6 @@ o.ignorecase = true

o.mouse = "a" o.pumheight = 10 o.showmode = false -o.showtabline = 2 o.smartcase = true o.smartindent = true o.splitbelow = true
M lua/plugin/cmp.lua

@@ -55,6 +55,9 @@ { name = "nvim_lsp", max_item_count = 8 },

{ name = "buffer", keyword_length = 4, max_item_count = 5 }, { name = "luasnip", keyword_length = 2, max_item_count = 4 }, }, + experimental = { + ghost_text = true, + }, } end