Adding in wezterm configurations and changing the colorscheme for neovim
to test out a slight variation.
This commit is contained in:
parent
9a0c153797
commit
0a742cfba1
@ -21,3 +21,8 @@ if [ ! -L $HOME/.tmux.conf ]
|
||||
then
|
||||
ln -fs $PWD/tmux.conf $HOME/.tmux.conf
|
||||
fi
|
||||
|
||||
if [ ! -L $HOME/.wezterm.lua ]
|
||||
then
|
||||
ln -fs $PWD/wezterm.lua $HOME/.wezterm.lua
|
||||
fi
|
||||
|
||||
@ -1,10 +1,14 @@
|
||||
return {
|
||||
'ellisonleao/gruvbox.nvim',
|
||||
-- 'ellisonleao/gruvbox.nvim',
|
||||
'sainnhe/gruvbox-material',
|
||||
config = function()
|
||||
require('gruvbox').setup({
|
||||
contrast = 'hard',
|
||||
})
|
||||
vim.cmd([[colorscheme gruvbox]])
|
||||
-- require('gruvbox').setup({
|
||||
-- contrast = 'hard',
|
||||
-- })
|
||||
-- vim.cmd([[colorscheme gruvbox]])
|
||||
vim.g.gruvbox_material_enable_italic = true
|
||||
vim.g.gruvbox_material_background = 'hard'
|
||||
vim.cmd.colorscheme('gruvbox-material')
|
||||
end,
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
|
||||
24
wezterm.lua
Normal file
24
wezterm.lua
Normal file
@ -0,0 +1,24 @@
|
||||
local wezterm = require 'wezterm'
|
||||
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
config.color_scheme = 'darkmatrix'
|
||||
config.color_scheme = 'Gruvbox dark, hard (base16)'
|
||||
-- config.color_scheme = 's3r0 modified (terminal.sexy)'
|
||||
|
||||
config.color_scheme = 'Mashup Colors (terminal.sexy)'
|
||||
|
||||
config.font = wezterm.font 'Inconsolata Nerd Font Mono'
|
||||
config.font_size = 12.5
|
||||
config.enable_tab_bar = false
|
||||
config.window_close_confirmation = 'NeverPrompt'
|
||||
config.window_padding = {
|
||||
left = '0',
|
||||
right = '0',
|
||||
top = '0',
|
||||
bottom = '0'
|
||||
}
|
||||
|
||||
config.window_background_opacity = 0.97
|
||||
|
||||
return config
|
||||
Loading…
x
Reference in New Issue
Block a user