catppuccin
This commit is contained in:
@ -88,10 +88,8 @@ require("catppuccin").setup({
|
||||
},
|
||||
color_overrides = {},
|
||||
custom_highlights = {
|
||||
-- Type = { fg = colors.blue },
|
||||
-- Function = { fg = colors.sapphire },
|
||||
-- Identifier = { fg = colors.mauve },
|
||||
-- --
|
||||
Identifier = { fg = colors.lavender },
|
||||
-- Identifier = { fg = colors.sapphire },
|
||||
Function = { fg = colors.mauve },
|
||||
},
|
||||
})
|
||||
|
@ -1,4 +1,5 @@
|
||||
local M = {}
|
||||
local notify = require 'notify'
|
||||
|
||||
local lsp_util = vim.lsp.util
|
||||
|
||||
@ -7,7 +8,7 @@ function M.code_action_listener()
|
||||
local params = lsp_util.make_range_params()
|
||||
params.context = context
|
||||
vim.lsp.buf_request(0, 'textDocument/codeAction', params, function(err, _, result)
|
||||
-- do something with result - e.g. check if empty and show some indication such as a sign
|
||||
notify('codeAction '..result, 'info', {timeout=500})
|
||||
end)
|
||||
end
|
||||
|
||||
|
@ -165,7 +165,9 @@ cider_lsp_handlers["$/syncResponse"] = function(_, result, ctx)
|
||||
end
|
||||
|
||||
cider_lsp_handlers["workspace/diagnostic/refresh"] = function(_, result, ctx)
|
||||
VPrint('result:')
|
||||
notify('result:'..result, 'info', {timeout=900})
|
||||
notify('ctx:'..ctx, 'info', {timeout=900})
|
||||
|
||||
VPrint(result)
|
||||
VPrint('ctx:')
|
||||
VPrint(ctx)
|
||||
|
Reference in New Issue
Block a user