trying to fix blink colors and failing (might have to rewrite for content lol)
This commit is contained in:
@@ -44,6 +44,7 @@
|
|||||||
tree-sitter
|
tree-sitter
|
||||||
ripgrep
|
ripgrep
|
||||||
gcc
|
gcc
|
||||||
|
cargo
|
||||||
fzf
|
fzf
|
||||||
gnumake
|
gnumake
|
||||||
imagemagick
|
imagemagick
|
||||||
|
|||||||
3
init.lua
3
init.lua
@@ -10,7 +10,7 @@ require("config.autocmd")
|
|||||||
require("config.binds")
|
require("config.binds")
|
||||||
|
|
||||||
-- Colorcheme
|
-- Colorcheme
|
||||||
vim.cmd.colorscheme("catppuccin-mocha")
|
vim.cmd.colorscheme("catppuccin")
|
||||||
|
|
||||||
-- Line numbers
|
-- Line numbers
|
||||||
vim.opt.cursorline = true
|
vim.opt.cursorline = true
|
||||||
@@ -39,6 +39,7 @@ vim.opt.undofile = true
|
|||||||
-- Better Highlighting
|
-- Better Highlighting
|
||||||
vim.opt.hlsearch = false
|
vim.opt.hlsearch = false
|
||||||
vim.opt.incsearch = true
|
vim.opt.incsearch = true
|
||||||
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
-- Nowrap
|
-- Nowrap
|
||||||
vim.opt.wrap = false
|
vim.opt.wrap = false
|
||||||
|
|||||||
@@ -55,12 +55,12 @@ vim.lsp.enable({
|
|||||||
"emmet_language_server",
|
"emmet_language_server",
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.o.pumborder = "rounded"
|
vim.o.winborder = "rounded"
|
||||||
|
|
||||||
|
require("blink.cmp").build():pwait()
|
||||||
|
|
||||||
require("blink.cmp").setup({
|
require("blink.cmp").setup({
|
||||||
|
|
||||||
fuzzy = { implementation = "lua" },
|
|
||||||
|
|
||||||
signature = {
|
signature = {
|
||||||
enabled = false,
|
enabled = false,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -7,9 +7,16 @@ require("catppuccin").setup({
|
|||||||
transparent_background = true, -- disables setting the background color.
|
transparent_background = true, -- disables setting the background color.
|
||||||
float = {
|
float = {
|
||||||
transparent = true, -- enable transparent floating windows
|
transparent = true, -- enable transparent floating windows
|
||||||
solid = false, -- use solid styling for floating windows, see |winborder|
|
solid = true, -- use solid styling for floating windows, see |winborder|
|
||||||
|
},
|
||||||
|
auto_integrations = true,
|
||||||
|
integrations = {
|
||||||
|
blink_cmp = {
|
||||||
|
style = "bordered",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
show_end_of_buffer = true, -- shows the '~' characters after the end of buffers
|
show_end_of_buffer = true, -- shows the '~' characters after the end of buffers
|
||||||
|
term_colors = true,
|
||||||
})
|
})
|
||||||
|
|
||||||
require("vimade").setup({
|
require("vimade").setup({
|
||||||
|
|||||||
Reference in New Issue
Block a user