migrates null-ls, updates icons for nvim-cmp

This commit is contained in:
xesc 2023-12-10 15:21:22 +01:00
parent 139eb55017
commit 162febc284
2 changed files with 15 additions and 15 deletions

View file

@ -1,6 +1,6 @@
return {
{
"jose-elias-alvarez/null-ls.nvim",
"nvimtools/none-ls.nvim",
-- event = "BufReadPost",
dependencies = {
{

View file

@ -40,30 +40,30 @@ return {
-- Set up nvim-cmp with luasnip
local kind_icons = {
Text = "",
Method = "",
Function = "",
Method = "󰆧",
Function = "󰊕",
Constructor = "",
Field = "",
Variable = "",
Class = "",
Field = "󰇽",
Variable = "󰂡",
Class = "󰠱",
Interface = "",
Module = "",
Property = "",
Property = "󰜢",
Unit = "",
Value = "",
Value = "󰎠",
Enum = "",
Keyword = "",
Keyword = "󰌋",
Snippet = "",
Color = "",
File = "",
Color = "󰏘",
File = "󰈙",
Reference = "",
Folder = "",
Folder = "󰉋",
EnumMember = "",
Constant = "",
Constant = "󰏿",
Struct = "",
Event = "",
Operator = "",
TypeParameter = ""
Operator = "󰆕",
TypeParameter = "󰅲"
}
local has_words_before = function()