Add font size to wezterm, fix some depracation in tabby

This commit is contained in:
Evie Litherland-Smith 2023-02-11 10:16:31 +00:00
parent 1920de4a66
commit 46c4460d92
3 changed files with 3 additions and 1 deletions

View file

@ -442,6 +442,7 @@ require("feline").setup({
force_inactive = { force_inactive = {
filetypes = { filetypes = {
"NvimTree", "NvimTree",
"Trouble",
"packer", "packer",
"dap-repl", "dap-repl",
"dapui_scopes", "dapui_scopes",

View file

@ -156,7 +156,7 @@ vim.api.nvim_create_autocmd({ "SessionLoadPost", "ColorScheme" }, {
---------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------
-- Feline -- Feline
local filename = require("tabby.filename") local filename = require("tabby.module.filename")
local cwd = function() local cwd = function()
return "" .. vim.fn.fnamemodify(vim.fn.getcwd(), ":t") .. " " return "" .. vim.fn.fnamemodify(vim.fn.getcwd(), ":t") .. " "

View file

@ -1,4 +1,5 @@
return { return {
font_size = 14,
disable_default_key_bindings = true, disable_default_key_bindings = true,
window_background_opacity = 0.95, window_background_opacity = 0.95,
color_scheme = "nightfox", color_scheme = "nightfox",