Add font size to wezterm, fix some depracation in tabby
This commit is contained in:
parent
1920de4a66
commit
46c4460d92
|
@ -442,6 +442,7 @@ require("feline").setup({
|
|||
force_inactive = {
|
||||
filetypes = {
|
||||
"NvimTree",
|
||||
"Trouble",
|
||||
"packer",
|
||||
"dap-repl",
|
||||
"dapui_scopes",
|
||||
|
|
|
@ -156,7 +156,7 @@ vim.api.nvim_create_autocmd({ "SessionLoadPost", "ColorScheme" }, {
|
|||
----------------------------------------------------------------------------------------------------
|
||||
-- Feline
|
||||
|
||||
local filename = require("tabby.filename")
|
||||
local filename = require("tabby.module.filename")
|
||||
|
||||
local cwd = function()
|
||||
return " " .. vim.fn.fnamemodify(vim.fn.getcwd(), ":t") .. " "
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
return {
|
||||
font_size = 14,
|
||||
disable_default_key_bindings = true,
|
||||
window_background_opacity = 0.95,
|
||||
color_scheme = "nightfox",
|
||||
|
|
Loading…
Reference in a new issue