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 = {
|
force_inactive = {
|
||||||
filetypes = {
|
filetypes = {
|
||||||
"NvimTree",
|
"NvimTree",
|
||||||
|
"Trouble",
|
||||||
"packer",
|
"packer",
|
||||||
"dap-repl",
|
"dap-repl",
|
||||||
"dapui_scopes",
|
"dapui_scopes",
|
||||||
|
|
|
@ -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") .. " "
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue