Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
aolyang committed Dec 14, 2023
1 parent 454b127 commit 430fee0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions lua/core/user-options.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
local M = {}

M.options = {
nvchad_branch = "v2.0",
}

M.ui = {
------------------------------- base46 -------------------------------------
-- hl = highlights
Expand Down Expand Up @@ -67,7 +63,7 @@ M.ui = {

-- nvdash (dashboard)
nvdash = {
load_on_startup = true,
load_on_startup = false,

header = {
" ███╗ ██╗ ██╗ ██╗ ██╗ ███╗ ███╗",
Expand Down
4 changes: 2 additions & 2 deletions lua/plugins/lsp/signature.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ local config = require("core.utils").load_config().ui.lsp.signature
-- thx to https://gitlab.com/ranjithshegde/dotbare/-/blob/master/.config/nvim/lua/lsp/init.lua
local M = {}

M.signature_window = function(_, result, ctx, config)
local bufnr, winner = vim.lsp.handlers.signature_help(_, result, ctx, config)
M.signature_window = function(_, result, ctx, options)
local bufnr, winner = vim.lsp.handlers.signature_help(_, result, ctx, options)
local current_cursor_line = vim.api.nvim_win_get_cursor(0)[1]

if winner then
Expand Down

0 comments on commit 430fee0

Please sign in to comment.