workstation

This commit is contained in:
Christian Nieves
2023-08-17 15:24:36 -05:00
parent de5d5c3271
commit fb1185cc2d
4 changed files with 14 additions and 14 deletions

View File

@ -3,6 +3,12 @@ local tprint = require("utils").tprint
local dump = require("utils").dump
local log = require("utils").log
local function compare_by_ciderlsp_score(entry1, entry2)
if entry1.completion_item.score ~= nil and entry2.completion_item.score ~= nil then
return entry1.completion_item.score > entry2.completion_item.score
end
end
local has_words_before = function()
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
@ -60,7 +66,6 @@ return {
})
if use_google() then
require("cmp_nvim_ciderlsp").setup()
table.insert(conditionalSources, { name = "analysislsp", priority = 5 })
table.insert(conditionalSources, { name = "nvim_ciderlsp", priority = 9 })
else
@ -135,6 +140,7 @@ return {
sorting = {
comparators = {
compare_by_ciderlsp_score,
cmp.config.compare.priority,
cmp.config.compare.offset,
cmp.config.compare.exact,

View File

@ -167,9 +167,6 @@ return {
require("lualine").refresh()
end
end
require("cmp_nvim_ciderlsp").setup({
-- multiline_summary_symbol = "…",
})
capabilities = require("cmp_nvim_ciderlsp").update_capabilities(capabilities)
capabilities.workspace.codeLens = { refreshSupport = true }
capabilities.workspace.diagnostics = { refreshSupport = true }

View File

@ -9,14 +9,14 @@ return {
return { vim.fn.split(vim.fn.getreg(""), "\n"), vim.fn.getregtype("") }
end
vim.g.clipboard = {
name = "osc52",
copy = { ["+"] = copy, ["*"] = copy },
paste = { ["+"] = paste, ["*"] = paste },
}
-- vim.g.clipboard = {
-- name = "osc52",
-- copy = { ["+"] = copy, ["*"] = copy },
-- paste = { ["+"] = paste, ["*"] = paste },
-- }
-- Now the '+' register will copy to system clipboard using OSC52
-- vim.keymap.set("n", "<leader>c", '"+y')
-- vim.keymap.set("n", "<leader>cc", '"+yy')
vim.keymap.set("n", "<leader>y", '"+y')
vim.keymap.set("n", "<leader>yy", '"+yy')
end,
}