This commit is contained in:
2023-05-24 14:14:36 +02:00
parent 5d399c7700
commit 10f6634765
596 changed files with 114803 additions and 375 deletions
+53
View File
@@ -0,0 +1,53 @@
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
##
## Configuration for Alacritty, the GPU enhanced terminal emulator.
## It's a very basic and simple config file, for full configuration...
## See, /usr/share/doc/alacritty/example/alacritty.yml
## Import files (Colors, Fonts, Etc)
import:
- ~/.config/i3/alacritty/colors.yml
- ~/.config/i3/alacritty/fonts.yml
## Set environment variables
env:
TERM: alacritty
WINIT_X11_SCALE_FACTOR: '1.0'
## Terminal window settings
window:
dimensions:
columns: 82
lines: 24
padding:
x: 10
y: 10
decorations: full
startup_mode: Windowed
dynamic_title: true
## scrolling
history: 10000
multiplier: 3
## Background opacity
opacity: 0.92
## Cursor
cursor:
style:
shape: Block
blinking: On
unfocused_hollow: false
## Live config reload
live_config_reload: true
## Shell
#shell:
# program: /bin/zsh
# args:
# - --login
+29
View File
@@ -0,0 +1,29 @@
## Colors configuration
colors:
# Default colors
primary:
# background: '#282828'
background: '#000000'
foreground: '#ebdbb2'
# Normal colors
normal:
black: '#3C3C3C'
red: '#cc241d'
green: '#98971a'
yellow: '#d79921'
blue: '#458588'
magenta: '#b16286'
cyan: '#689d6a'
white: '#a89984'
# Bright colors
bright:
black: '#928374'
red: '#fb4934'
green: '#b8bb26'
yellow: '#fabd2f'
blue: '#83a598'
magenta: '#d3869b'
cyan: '#8ec07c'
white: '#ebdbb2'
+37
View File
@@ -0,0 +1,37 @@
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
##
## Font configuration
font:
# Normal (roman) font face
normal:
family: "JetBrainsMono Nerd Font"
#style: Regular
# Bold font face
bold:
family: "JetBrainsMono Nerd Font"
#style: Bold
# Italic font face
italic:
family: "JetBrainsMono Nerd Font"
#style: Italic
# Bold italic font face
bold_italic:
family: "JetBrainsMono Nerd Font"
#style: Bold Italic
# Point size
size: 16
# Offset
#offset:
# x: 0
# y: 0
# Glyph offset
#glyph_offset:
# x: 0
# y: 0