diff --git a/nvim/after/plugin/colors.lua b/nvim/after/plugin/colors.lua index 7aaf00f..3317a0c 100644 --- a/nvim/after/plugin/colors.lua +++ b/nvim/after/plugin/colors.lua @@ -1,17 +1,11 @@ print("Setting up colors") -vim.cmd.colorscheme("jellybeans") +vim.g.jellybeans_use_term_italics = 1 + +local background = {} +background["ctermbg"] = 'none' +background["256ctermbg"] = 'none' +background["guibg"] = 'none' +vim.g.jellybeans_overrides = { background = background } --- rose_pine = packer_plugins["rose-pine"] --- if rose_pine then --- print("Rose Pine is known") --- if rose_pine.loaded then --- print("Using Rose Pine colorscheme") --- vim.cmd.colorscheme("rose-pine") --- -- vim.cmd("colorscheme rose-pine") --- else --- print("Rose Pine is not loaded") --- end --- else --- print("Rose Pine is not known") --- end +vim.cmd.colorscheme("jellybeans") diff --git a/wezterm/config.lua b/wezterm/config.lua index 34c34f6..d298056 100644 --- a/wezterm/config.lua +++ b/wezterm/config.lua @@ -44,4 +44,12 @@ config.tab_bar_at_bottom = true -- config.initial_cols = 90 -- config.initial_rows = 24 +config.window_padding = { + left = 0, + -- this becomes the width of the scrollbar + right = 0, + top = 0, + bottom = -8, +} + return config