update some module paths
This commit is contained in:
parent
487ca44566
commit
8ea74bc23b
6 changed files with 15 additions and 15 deletions
|
@ -15,7 +15,7 @@ local formatting_style = {
|
|||
fields = field_arrangement[cmp_style] or { "abbr", "kind", "menu" },
|
||||
|
||||
format = function(_, item)
|
||||
local icons = require "nvchad_ui.icons.lspkind"
|
||||
local icons = require "nvchad.icons.lspkind"
|
||||
local icon = (cmp_ui.icons and icons[item.kind]) or ""
|
||||
|
||||
if cmp_style == "atom" or cmp_style == "atom_colored" then
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
dofile(vim.g.base46_cache .. "lsp")
|
||||
require "nvchad_ui.lsp"
|
||||
require "nvchad.lsp"
|
||||
|
||||
local M = {}
|
||||
local utils = require "core.utils"
|
||||
|
@ -13,7 +13,7 @@ M.on_attach = function(client, bufnr)
|
|||
utils.load_mappings("lspconfig", { buffer = bufnr })
|
||||
|
||||
if client.server_capabilities.signatureHelpProvider then
|
||||
require("nvchad_ui.signature").setup(client)
|
||||
require("nvchad.signature").setup(client)
|
||||
end
|
||||
|
||||
if not utils.load_config().ui.lsp_semantic_tokens and client.supports_method "textDocument/semanticTokens" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue