alacritty colorscheme + vim cursor bgcolor

This commit is contained in:
Dmitry Chumak
2025-04-08 11:31:06 +03:00
parent 491aae86da
commit bcca54a031
2 changed files with 13 additions and 26 deletions

View File

@@ -1,6 +1,11 @@
colors.draw_bold_text_with_bright_colors = false colors.draw_bold_text_with_bright_colors = false
#custom_cursor_colors = true #custom_cursor_colors = true
general.live_config_reload = true
[general]
import = [
"~/.config/alacritty/themes/themes/hardhacker.toml"
]
live_config_reload = true
[window] [window]
dynamic_padding = true dynamic_padding = true
@@ -45,34 +50,10 @@ y = 3
x = 0 x = 0
y = 0 y = 0
[colors.primary]
background = '#1c2023'
foreground = '#c7ccd1'
[colors.cursor] [colors.cursor]
text = '#1c2023' text = 'CellBackground'
cursor = '#c7ccd1' cursor = '#c7ccd1'
[colors.normal]
black = '#1c2023'
red = '#c7ae95'
green = '#95c7ae'
yellow = '#aec795'
blue = '#ae95c7'
magenta = '#c795ae'
cyan = '#95aec7'
white = '#c7ccd1'
[colors.bright]
black = '#747c84'
red = '#c7ae95'
green = '#95c7ae'
yellow = '#aec795'
blue = '#ae95c7'
magenta = '#c795ae'
cyan = '#95aec7'
white = '#f3f4f5'
[bell] [bell]
animation = "EaseOutExpo" animation = "EaseOutExpo"
color = "0xffffff" color = "0xffffff"
@@ -104,4 +85,5 @@ bindings = [
{ key = "X", mods = "Command", chars = "\u0018" }, { key = "X", mods = "Command", chars = "\u0018" },
{ key = "Y", mods = "Command", chars = "\u0019" }, { key = "Y", mods = "Command", chars = "\u0019" },
{ key = "Z", mods = "Command", chars = "\u001a" }, { key = "Z", mods = "Command", chars = "\u001a" },
{ key = "F", mods = "Command", action = "ToggleMaximized" },
] ]

View File

@@ -88,6 +88,11 @@ local plugins = {
require("lazy").setup(plugins) require("lazy").setup(plugins)
vim.cmd([[
set termguicolors
hi Cursor guifg=red guibg=green
set guicursor=n-v-c:block-Cursor/lCursor,i-ci-ve:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,o:hor50-Cursor/lCursor,a:blinkwait700-blinkoff400-blinkon250-Cursor/lCursor,sm:block-blinkwait175-blinkoff150-blinkon175-Cursor/lCursor
]])
require("plugins/telescope") require("plugins/telescope")
require("plugins/completions") require("plugins/completions")
require("plugins/gitsigns") require("plugins/gitsigns")