Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rollwagen committed Jan 21, 2024
1 parent 39e6256 commit bcf5d2a
Show file tree
Hide file tree
Showing 8 changed files with 369 additions and 52 deletions.
63 changes: 63 additions & 0 deletions .alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
[colors]
draw_bold_text_with_bright_colors = false

[[colors.indexed_colors]]
color = "0xffa066"
index = 16

[[colors.indexed_colors]]
color = "0xff5d62"
index = 17

[colors.bright]
black = "0x727169"
blue = "0x7fb4ca"
cyan = "0x7aa89f"
green = "0x98bb6c"
magenta = "0x938aa9"
red = "0xe82424"
white = "0xdcd7ba"
yellow = "0xe6c384"

[colors.normal]
black = "0x090618"
blue = "0x7e9cd8"
cyan = "0x6a9589"
green = "0x76946a"
magenta = "0x957fb8"
red = "0xc34043"
white = "0xc8c093"
yellow = "0xc0a36e"

[colors.primary]
background = "0x1f1f28"
foreground = "0xdcd7ba"

[colors.selection]
background = "0x2d4f67"
foreground = "0xc8c093"

[font]
size = 14.0

[font.bold]
family = "FiraCode Nerd Font"
style = "Regular"
# style = "Medium"

[font.normal]
family = "FiraCode Nerd Font"
style = "Regular"

[scrolling]
history = 10000

[window]
decorations = "buttonless"
dynamic_padding = true
dynamic_title = true
opacity = 0.95

[window.padding]
x = 0
y = 0
136 changes: 88 additions & 48 deletions .alacritty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ window:
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
padding:
x: 5
y: 5
x: 0
y: 0

# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
# dynamic_padding: false
dynamic_padding: true

# Window decorations
#
Expand All @@ -63,13 +64,15 @@ window:
# - buttonless: Title bar, transparent background and no title bar buttons
#decorations: full
decorations: buttonless
# decorations: none

# Background opacity
#
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
#opacity: 1.0
opacity: 0.985
# opacity: 0.985
opacity: 0.95

# Startup Mode (changes require restart)
#
Expand Down Expand Up @@ -903,51 +906,88 @@ draw_bold_text_with_bright_colors: false
#


# colors:
# primary:
# background: '#2e3440'
# foreground: '#d8dee9'
# dim_foreground: '#a5abb6'
# cursor:
# text: '#2e3440'
# cursor: '#d8dee9'
# vi_mode_cursor:
# text: '#2e3440'
# cursor: '#d8dee9'
# selection:
# text: CellForeground
# background: '#4c566a'
# search:
# matches:
# foreground: CellBackground
# background: '#88c0d0'
# # bar:
# # background: '#434c5e'
# # foreground: '#d8dee9'
# normal:
# black: '#3b4252'
# red: '#bf616a'
# green: '#a3be8c'
# yellow: '#ebcb8b'
# blue: '#81a1c1'
# magenta: '#b48ead'
# cyan: '#88c0d0'
# white: '#e5e9f0'
# bright:
# black: '#4c566a'
# red: '#bf616a'
# green: '#a3be8c'
# yellow: '#ebcb8b'
# blue: '#81a1c1'
# magenta: '#b48ead'
# cyan: '#8fbcbb'
# white: '#eceff4'
# dim:
# black: '#373e4d'
# red: '#94545d'
# green: '#809575'
# yellow: '#b29e75'
# blue: '#68809a'
# magenta: '#8c738c'
# cyan: '#6d96a5'
# white: '#aeb3bb'


#
# Kanagawa Alacritty Colors
#
colors:
primary:
background: '#2e3440'
foreground: '#d8dee9'
dim_foreground: '#a5abb6'
cursor:
text: '#2e3440'
cursor: '#d8dee9'
vi_mode_cursor:
text: '#2e3440'
cursor: '#d8dee9'
selection:
text: CellForeground
background: '#4c566a'
search:
matches:
foreground: CellBackground
background: '#88c0d0'
# bar:
# background: '#434c5e'
# foreground: '#d8dee9'
background: '0x1f1f28'
foreground: '0xdcd7ba'

normal:
black: '#3b4252'
red: '#bf616a'
green: '#a3be8c'
yellow: '#ebcb8b'
blue: '#81a1c1'
magenta: '#b48ead'
cyan: '#88c0d0'
white: '#e5e9f0'
black: '0x090618'
red: '0xc34043'
green: '0x76946a'
yellow: '0xc0a36e'
blue: '0x7e9cd8'
magenta: '0x957fb8'
cyan: '0x6a9589'
white: '0xc8c093'

bright:
black: '#4c566a'
red: '#bf616a'
green: '#a3be8c'
yellow: '#ebcb8b'
blue: '#81a1c1'
magenta: '#b48ead'
cyan: '#8fbcbb'
white: '#eceff4'
dim:
black: '#373e4d'
red: '#94545d'
green: '#809575'
yellow: '#b29e75'
blue: '#68809a'
magenta: '#8c738c'
cyan: '#6d96a5'
white: '#aeb3bb'
black: '0x727169'
red: '0xe82424'
green: '0x98bb6c'
yellow: '0xe6c384'
blue: '0x7fb4ca'
magenta: '0x938aa9'
cyan: '0x7aa89f'
white: '0xdcd7ba'

selection:
background: '0x2d4f67'
foreground: '0xc8c093'

indexed_colors:
- { index: 16, color: '0xffa066' }
- { index: 17, color: '0xff5d62' }
2 changes: 2 additions & 0 deletions .config/bat/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Set the theme to "gruvbox-dark"
--theme="gruvbox-dark"
12 changes: 9 additions & 3 deletions .config/nvim/lua/plugins/toggleterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ return {
{
"akinsho/toggleterm.nvim",
version = "*",
opts = {
open_mapping = [[<c-\>]],
},
config = function()
require("toggleterm").setup({
open_mapping = [[<c-\>]],
direction = "float",
float_opts = {
border = "single", -- 'curved'
},
})
end,
},
}
Loading

0 comments on commit bcf5d2a

Please sign in to comment.