Skip to content

Commit e3f1563

Browse files
author
bwilliams
committedOct 21, 2024
reverted to cmp until I get time to make blink not work with CS files until github.com/Saghen/blink.cmp/issues/158 is fixed
1 parent e51a2af commit e3f1563

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed
 

‎lua/chadrc.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
local M = {}
33

44
M.base46 = {
5-
theme = "chadracula-evondev",
5+
theme = "rosepine",
66
integrations = { "telescope", "cmp", "trouble" },
77
}
88

‎lua/config/lazy.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ end
1818
vim.opt.rtp:prepend(lazypath)
1919

2020
local spec = {
21-
--[[ dev = {
21+
dev = {
2222
path = "D:/personal/nvim-plugins/",
2323
patterns = { "justbarnt" },
2424
fallback = true,
25-
}, ]]
25+
},
2626
---@Class LazySpecPlugin
2727
spec = {
2828
"nvim-lua/plenary.nvim",
@@ -43,7 +43,7 @@ local spec = {
4343
end,
4444
},
4545
-- add LazyVim and import its plugins
46-
{ "LazyVim/LazyVim", import = "lazyvim.plugins", opts = { colorscheme = "nvchad" }, dev = false },
46+
{ "LazyVim/LazyVim", import = "lazyvim.plugins", opts = { colorscheme = "nvchad" } },
4747
-- import/override with your plugins
4848
{ import = "plugins" },
4949
{ import = "plugins.lang" },

‎lua/plugins/blink-cmp.lua

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
return {
22
"saghen/blink.cmp",
33
event = "BufReadPre",
4+
enabled = false,
45
version = "v0.3.1", -- REQUIRED release tag to download pre-built binaries
56
---@module "blink.cmp"
67
---@type blink.cmp.Config

‎lua/plugins/cmp.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ return {
9898
fields = fields,
9999
}
100100

101-
-- cmp.setup(opts)
101+
cmp.setup(opts)
102102
cmp.setup.cmdline({ "/", "?" }, {
103103
sources = cmp.config.sources({
104104
{ name = "buffer" },

‎lua/plugins/showkeys.lua

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
return {
2+
{
3+
"nvchad/showkeys",
4+
cmd = "ShowkeysToggle",
5+
opts = {
6+
timeout = 1,
7+
maxkeys = 5,
8+
},
9+
},
10+
}

0 commit comments

Comments
 (0)
Please sign in to comment.