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