[UPDATED] python semantic token priority, blink config, wezterm tabline
This commit is contained in:
8
lua/plugins/blink.lua
Normal file
8
lua/plugins/blink.lua
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
return {
|
||||||
|
"saghen/blink.cmp",
|
||||||
|
opts = {
|
||||||
|
keymap = {
|
||||||
|
["<Tab>"] = { "select_and_accept", 'fallback' },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
@@ -35,6 +35,7 @@ return {
|
|||||||
LazyVim.lsp.on_attach(function(client, _)
|
LazyVim.lsp.on_attach(function(client, _)
|
||||||
client.server_capabilities.hoverProvider = true
|
client.server_capabilities.hoverProvider = true
|
||||||
end, "basedpyright")
|
end, "basedpyright")
|
||||||
|
vim.api.nvim_set_hl(0, "@lsp.type.decorator.python", { link = "Normal" })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
-- need to to set env var WEZTERM_CONFIG_FILE to this file
|
--WARNING: need to to set env var WEZTERM_CONFIG_FILE to this file
|
||||||
--FOR THE THE LOVE OF GOD READ THIS DAVE
|
|
||||||
local wezterm = require("wezterm")
|
local wezterm = require("wezterm")
|
||||||
local config = wezterm.config_builder()
|
local config = wezterm.config_builder()
|
||||||
-- workspace dir default
|
-- workspace dir default
|
||||||
@@ -20,6 +19,7 @@ config.window_padding = {
|
|||||||
|
|
||||||
--tab bar
|
--tab bar
|
||||||
config.hide_tab_bar_if_only_one_tab = true
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
|
config.tab_bar_at_bottom = true
|
||||||
|
|
||||||
--window size
|
--window size
|
||||||
config.initial_rows = 32
|
config.initial_rows = 32
|
||||||
|
|||||||
Reference in New Issue
Block a user