From 77157babde75ae3f3f2e101c312be1a4bf2f6373 Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Wed, 19 Mar 2025 10:48:39 -0400 Subject: [PATCH] [UPDATED] python semantic token priority, blink config, wezterm tabline --- lua/plugins/blink.lua | 8 ++++++++ lua/plugins/langs/python.lua | 1 + wezterm.lua | 4 ++-- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 lua/plugins/blink.lua diff --git a/lua/plugins/blink.lua b/lua/plugins/blink.lua new file mode 100644 index 0000000..1382152 --- /dev/null +++ b/lua/plugins/blink.lua @@ -0,0 +1,8 @@ +return { + "saghen/blink.cmp", + opts = { + keymap = { + [""] = { "select_and_accept", 'fallback' }, + }, + }, +} diff --git a/lua/plugins/langs/python.lua b/lua/plugins/langs/python.lua index b1038a4..c58836e 100644 --- a/lua/plugins/langs/python.lua +++ b/lua/plugins/langs/python.lua @@ -35,6 +35,7 @@ return { LazyVim.lsp.on_attach(function(client, _) client.server_capabilities.hoverProvider = true end, "basedpyright") + vim.api.nvim_set_hl(0, "@lsp.type.decorator.python", { link = "Normal" }) end, }, }, diff --git a/wezterm.lua b/wezterm.lua index 41999ed..09d920c 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -1,5 +1,4 @@ --- need to to set env var WEZTERM_CONFIG_FILE to this file ---FOR THE THE LOVE OF GOD READ THIS DAVE +--WARNING: need to to set env var WEZTERM_CONFIG_FILE to this file local wezterm = require("wezterm") local config = wezterm.config_builder() -- workspace dir default @@ -20,6 +19,7 @@ config.window_padding = { --tab bar config.hide_tab_bar_if_only_one_tab = true +config.tab_bar_at_bottom = true --window size config.initial_rows = 32