catppuccin
This commit is contained in:
@ -88,10 +88,8 @@ require("catppuccin").setup({
|
|||||||
},
|
},
|
||||||
color_overrides = {},
|
color_overrides = {},
|
||||||
custom_highlights = {
|
custom_highlights = {
|
||||||
-- Type = { fg = colors.blue },
|
Identifier = { fg = colors.lavender },
|
||||||
-- Function = { fg = colors.sapphire },
|
-- Identifier = { fg = colors.sapphire },
|
||||||
-- Identifier = { fg = colors.mauve },
|
|
||||||
-- --
|
|
||||||
Function = { fg = colors.mauve },
|
Function = { fg = colors.mauve },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
local notify = require 'notify'
|
||||||
|
|
||||||
local lsp_util = vim.lsp.util
|
local lsp_util = vim.lsp.util
|
||||||
|
|
||||||
@ -7,7 +8,7 @@ function M.code_action_listener()
|
|||||||
local params = lsp_util.make_range_params()
|
local params = lsp_util.make_range_params()
|
||||||
params.context = context
|
params.context = context
|
||||||
vim.lsp.buf_request(0, 'textDocument/codeAction', params, function(err, _, result)
|
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)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -165,7 +165,9 @@ cider_lsp_handlers["$/syncResponse"] = function(_, result, ctx)
|
|||||||
end
|
end
|
||||||
|
|
||||||
cider_lsp_handlers["workspace/diagnostic/refresh"] = function(_, result, ctx)
|
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(result)
|
||||||
VPrint('ctx:')
|
VPrint('ctx:')
|
||||||
VPrint(ctx)
|
VPrint(ctx)
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
" silent call system('gcertstatus')
|
|
||||||
" if !v:shell_error
|
|
||||||
" set runtimepath+=/google/src/files/head/depot/google3/experimental/users/tstone/vim/vim-imp
|
|
||||||
" set runtimepath+=/google/src/files/head/depot/google3/experimental/users/tstone/vim/imp-csearch
|
|
||||||
" endif
|
|
||||||
"
|
|
||||||
" set runtimepath+=/google/src/files/head/depot/google3/experimental/users/tstone/vim/vim-imp
|
|
||||||
" set runtimepath+=/google/src/files/head/depot/google3/experimental/users/tstone/vim/imp-csearch
|
|
||||||
|
|
||||||
" Glaive imp Suggest[default]=ripgrep,csearch,prompt Report[default]=popupnotify Location[default]=packageroot
|
|
Reference in New Issue
Block a user