mirror of
https://github.com/Ajetski/dotfiles.git
synced 2025-09-30 13:53:17 -09:00
change themes
This commit is contained in:
parent
33b561cda8
commit
5d9ef47cab
@ -756,7 +756,7 @@ font_size 16.0
|
|||||||
#: Fade the text in inactive windows by the specified amount (a number
|
#: Fade the text in inactive windows by the specified amount (a number
|
||||||
#: between zero and one, with zero being fully faded).
|
#: between zero and one, with zero being fully faded).
|
||||||
|
|
||||||
hide_window_decorations titlebar-only
|
hide_window_decorations yes
|
||||||
|
|
||||||
#: Hide the window decorations (title-bar and window borders) with
|
#: Hide the window decorations (title-bar and window borders) with
|
||||||
#: yes. On macOS, titlebar-only can be used to only hide the titlebar.
|
#: yes. On macOS, titlebar-only can be used to only hide the titlebar.
|
||||||
|
@ -171,62 +171,87 @@ require('nvim_comment').setup({
|
|||||||
require 'hop'.setup {}
|
require 'hop'.setup {}
|
||||||
|
|
||||||
-- setup lualine
|
-- setup lualine
|
||||||
local colors = {
|
-- local colors = {
|
||||||
blue = '#80a0ff',
|
-- blue = '#80a0ff',
|
||||||
cyan = '#79dac8',
|
-- cyan = '#79dac8',
|
||||||
black = '#080808',
|
-- black = '#080808',
|
||||||
white = '#c6c6c6',
|
-- white = '#c6c6c6',
|
||||||
red = '#ff5189',
|
-- red = '#ff5189',
|
||||||
violet = '#d183e8',
|
-- violet = '#d183e8',
|
||||||
grey = '#303030',
|
-- grey = '#303030',
|
||||||
}
|
-- }
|
||||||
|
--
|
||||||
local bubbles_theme = {
|
-- local bubbles_theme = {
|
||||||
normal = {
|
-- normal = {
|
||||||
a = { fg = colors.black, bg = colors.blue },
|
-- a = { fg = colors.black, bg = colors.blue },
|
||||||
b = { fg = colors.white, bg = colors.grey },
|
-- b = { fg = colors.white, bg = colors.grey },
|
||||||
c = { fg = colors.black, bg = colors.black },
|
-- c = { fg = colors.black, bg = colors.black },
|
||||||
},
|
-- },
|
||||||
|
--
|
||||||
insert = { a = { fg = colors.black, bg = colors.violet } },
|
-- insert = { a = { fg = colors.black, bg = colors.violet } },
|
||||||
visual = { a = { fg = colors.black, bg = colors.cyan } },
|
-- visual = { a = { fg = colors.black, bg = colors.cyan } },
|
||||||
replace = { a = { fg = colors.black, bg = colors.red } },
|
-- replace = { a = { fg = colors.black, bg = colors.red } },
|
||||||
|
--
|
||||||
inactive = {
|
-- inactive = {
|
||||||
a = { fg = colors.white, bg = colors.black },
|
-- a = { fg = colors.white, bg = colors.black },
|
||||||
b = { fg = colors.white, bg = colors.black },
|
-- b = { fg = colors.white, bg = colors.black },
|
||||||
c = { fg = colors.black, bg = colors.black },
|
-- c = { fg = colors.black, bg = colors.black },
|
||||||
},
|
-- },
|
||||||
}
|
-- }
|
||||||
|
|
||||||
require('lualine').setup {
|
require('lualine').setup {
|
||||||
options = {
|
options = {
|
||||||
theme = bubbles_theme,
|
theme = 'modus-vivendi', -- https://github.com/nvim-lualine/lualine.nvim/blob/master/THEMES.md
|
||||||
component_separators = '|',
|
component_separators = '|',
|
||||||
section_separators = { left = '', right = '' },
|
section_separators = { left = '', right = '' },
|
||||||
},
|
},
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = {
|
lualine_a = {
|
||||||
{ 'mode', separator = { left = '' }, right_padding = 2 },
|
-- { 'mode', separator = { left = '' }, right_padding = 2 },
|
||||||
|
'mode'
|
||||||
},
|
},
|
||||||
lualine_b = { 'filename', 'branch' },
|
lualine_b = {{ 'filename', path = 1 }, 'branch', 'diff', 'diagnostics' },
|
||||||
lualine_c = { 'fileformat' },
|
lualine_c = {'searchcount'},
|
||||||
lualine_x = {},
|
lualine_x = {},
|
||||||
lualine_y = { 'filetype', 'progress' },
|
lualine_y = {'fileformat', { 'filetype', colored = true, icon_only = true, padding = { left = 1, right = 2 }}},
|
||||||
lualine_z = {
|
lualine_z = {
|
||||||
{ 'location', separator = { right = '' }, left_padding = 2 },
|
-- { 'location', separator = { right = '' }, left_padding = 2 },
|
||||||
|
'progress'
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
inactive_sections = {
|
inactive_sections = {
|
||||||
lualine_a = { 'filename' },
|
lualine_a = { {'filename', path = 1} },
|
||||||
lualine_b = {},
|
lualine_b = {},
|
||||||
lualine_c = {},
|
lualine_c = {},
|
||||||
lualine_x = {},
|
lualine_x = {},
|
||||||
lualine_y = {},
|
lualine_y = {},
|
||||||
lualine_z = { 'location' },
|
lualine_z = {'progress'},
|
||||||
},
|
},
|
||||||
tabline = {},
|
tabline = {
|
||||||
extensions = {},
|
lualine_a = {'buffers'},
|
||||||
|
lualine_b = {},
|
||||||
|
lualine_c = {},
|
||||||
|
lualine_x = {},
|
||||||
|
lualine_y = {},
|
||||||
|
lualine_z = {'tabs'},
|
||||||
|
},
|
||||||
|
winbar = {
|
||||||
|
lualine_a = {},
|
||||||
|
lualine_b = {},
|
||||||
|
lualine_c = {},
|
||||||
|
lualine_x = {},
|
||||||
|
lualine_y = {},
|
||||||
|
lualine_z = {}
|
||||||
|
},
|
||||||
|
inactive_winbar = {
|
||||||
|
lualine_a = {},
|
||||||
|
lualine_b = {},
|
||||||
|
lualine_c = {},
|
||||||
|
lualine_x = {},
|
||||||
|
lualine_y = {},
|
||||||
|
lualine_z = {}
|
||||||
|
},
|
||||||
|
extensions = {'quickfix'},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- setup comments
|
-- setup comments
|
||||||
|
2
.zshrc
2
.zshrc
@ -8,7 +8,7 @@ export ZSH="$HOME/.oh-my-zsh"
|
|||||||
# load a random theme each time oh-my-zsh is loaded, in which case,
|
# load a random theme each time oh-my-zsh is loaded, in which case,
|
||||||
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
||||||
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
||||||
ZSH_THEME="agnoster"
|
ZSH_THEME="refined"
|
||||||
|
|
||||||
# Set list of themes to pick from when loading at random
|
# Set list of themes to pick from when loading at random
|
||||||
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||||
|
Loading…
x
Reference in New Issue
Block a user