fix border, obsidian completion and deprecated plugin leftovers

This commit is contained in:
xesc 2025-07-01 22:05:24 +02:00
parent 091a472949
commit 42d0945517
4 changed files with 159 additions and 165 deletions

View file

@ -76,4 +76,3 @@ vim.opt.shortmess = "aItTF"
-- hide buffers instead of closing
vim.opt.hidden = true
vim.opt.winborder = 'rounded'

View file

@ -49,6 +49,7 @@ return {
enabled = true
},
menu = {
border = 'rounded',
winhighlight = 'Normal:NormalFloat,FloatBorder:FloatBorder,CursorLine:CursorLine,Search:None',
min_width = 40,
max_height = 25,
@ -75,7 +76,7 @@ return {
auto_show = true,
auto_show_delay_ms = 0,
window = {
border = 'rounded',
winhighlight = 'Normal:NormalFloat,FloatBorder:FloatBorder,CursorLine:CursorLine',
}
},
@ -114,6 +115,7 @@ return {
signature = {
enabled = true,
window = {
border = 'rounded',
winhighlight = 'Normal:NormalFloat,FloatBorder:FloatBorder',
}
},

View file

@ -10,16 +10,12 @@ return {
custom_gruvbox.visual.a.bg = '#a9b665'
custom_gruvbox.replace.a.bg = '#ea6962'
local function lspsaga()
return require('lspsaga.symbol.winbar').get_bar()
end
require('lualine').setup {
options = {
theme = custom_gruvbox,
globalstatus = true,
component_separators = { left = '', right = '' },
section_separators = { left = '', right = '' },
section_separators = { left = '', right = '' },
disabled_filetypes = { 'netrw', 'Trouble' },
},
sections = {
@ -36,6 +32,8 @@ return {
color = { fg = '#d8a657', bg = '#141617', gui = 'bold' },
padding = 1,
},
},
lualine_c = {
{
'filename',
color = { gui = 'italic', fg = '#d3869b', bg = '#1d2021' },
@ -43,11 +41,6 @@ return {
path = 1,
},
},
lualine_c = {
{
lspsaga
}
},
lualine_x = {
{
'filetype',
@ -91,7 +84,6 @@ return {
}
}
},
inactive_sections = {
lualine_a = {
{
@ -105,14 +97,14 @@ return {
icon = '',
padding = 1,
},
},
lualine_c = {
{
'filename',
padding = 1,
path = 1,
}
},
lualine_c = {
},
lualine_x = {
{
'filetype',

View file

@ -22,12 +22,13 @@ return {
path = "~/notes",
},
},
-- completion = {
-- -- Set to false to disable completion.
-- nvim_cmp = true,
-- -- Trigger completion at 2 chars.
-- min_chars = 1,
-- },
completion = {
-- Set to false to disable completion.
nvim_cmp = false,
blink = true,
-- Trigger completion at 2 chars.
min_chars = 1,
},
mappings = {
-- Overrides the 'gf' mapping to work on markdown/wiki links within your vault.