From d2c421f275da15fdd3294e000d3186c21b46b42c Mon Sep 17 00:00:00 2001 From: Ian Griffin Date: Sun, 19 Jul 2026 17:30:00 +0800 Subject: [PATCH] updates --- lua/plugins/10_ide.lua | 2 ++ lua/ui.lua | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lua/plugins/10_ide.lua b/lua/plugins/10_ide.lua index a72a08e..7045851 100644 --- a/lua/plugins/10_ide.lua +++ b/lua/plugins/10_ide.lua @@ -202,6 +202,7 @@ return { }, { 'bellinitte/uxntal.vim', lazy = false }, + { 'hylang/vim-hy', lazy = false }, { 'nvim-flutter/flutter-tools.nvim', ft = 'dart', @@ -306,6 +307,7 @@ return { -- Show Code Outline/Symbols tree window { 'stevearc/aerial.nvim', + branch = "nvim-0.11", opts = { close_on_select = true, -- backends = { 'lsp', 'markdown', 'man' }, diff --git a/lua/ui.lua b/lua/ui.lua index 2aed930..92849bc 100644 --- a/lua/ui.lua +++ b/lua/ui.lua @@ -21,11 +21,12 @@ ct.set('ruler', 'showcmd', 'cursorline', 'title') -- ct.set('number') ct.set( -- {'termguicolors', true}, - {'signcolumn', 'number'}, - {'conceallevel', 0}, + {'background', 'light'}, {'colorcolumn', '81,121'}, - {'textwidth', 0}, + {'conceallevel', 0}, {'laststatus', 1}, + {'signcolumn', 'number'}, + {'textwidth', 0}, {'wrapmargin', 0} )