Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dotfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iliya.saroukha
dotfiles
Compare revisions
1830f86a62bd503d6ef63dc53eb16119b5e3bb40 to 4ee4ee153a634678bccba6d0c844b1f96319d9c6
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
iliya.saroukha/dotfiles
Select target project
No results found
4ee4ee153a634678bccba6d0c844b1f96319d9c6
Select Git revision
Branches
master
Swap
Target
iliya.saroukha/dotfiles
Select target project
iliya.saroukha/dotfiles
1 result
1830f86a62bd503d6ef63dc53eb16119b5e3bb40
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (4)
fix: new syntax for declaring startup shell in alacritty
· 6ab0cb39
iliya.saroukha
authored
4 months ago
Verified
6ab0cb39
feat: fastfetch config
· 62eb21fb
iliya.saroukha
authored
4 months ago
Verified
62eb21fb
feat: aliasing fastfetch to `ff`
· 7834ab87
iliya.saroukha
authored
4 months ago
Verified
7834ab87
subm update
· 4ee4ee15
iliya.saroukha
authored
4 months ago
Verified
4ee4ee15
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.config/alacritty/alacritty.toml
+3
-1
3 additions, 1 deletion
.config/alacritty/alacritty.toml
.config/fastfetch/config.jsonc
+86
-0
86 additions, 0 deletions
.config/fastfetch/config.jsonc
.config/nvim
+1
-1
1 addition, 1 deletion
.config/nvim
.zshrc
+2
-0
2 additions, 0 deletions
.zshrc
with
92 additions
and
2 deletions
.config/alacritty/alacritty.toml
View file @
4ee4ee15
...
...
@@ -8,7 +8,7 @@ dynamic_padding = true
opacity
=
0.85
blur
=
true
[shell]
[
terminal.
shell]
program
=
"/bin/zsh"
[font]
...
...
@@ -96,3 +96,5 @@ blue = "#9ccfd8"
magenta
=
"#c4a7e7"
cyan
=
"#ea9a97"
white
=
"#e0def4"
[terminal]
This diff is collapsed.
Click to expand it.
.config/fastfetch/config.jsonc
0 → 100644
View file @
4ee4ee15
// Inspired by Catnap
// source : https://github.com/fastfetch-cli/fastfetch/blob/dev/presets/examples/13.jsonc
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"type": "small",
"padding": {
"top": 1
}
},
"display": {
"separator": " "
},
"modules": [
{
"key": "╭───────────╮",
"type": "custom"
},
{
"key": "│ {#31} user {#keys}│",
"type": "title",
"format": "{user-name}"
},
{
"key": "│ {#32} hname {#keys}│",
"type": "title",
"format": "{host-name}"
},
{
"key": "│ {#33} uptime {#keys}│",
"type": "uptime"
},
{
"key": "│ {#34}{icon} distro {#keys}│",
"type": "os"
},
{
"key": "│ {#35} kernel {#keys}│",
"type": "kernel"
},
{
"key": "│ {#36} desktop {#keys}│",
"type": "de"
},
{
"key": "│ {#31} term {#keys}│",
"type": "terminal"
},
{
"key": "│ {#32} shell {#keys}│",
"type": "shell"
},
{
"key": "│ {#33} cpu {#keys}│",
"type": "cpu",
"showPeCoreCount": true
},
{
"key": "│ {#34} disk {#keys}│",
"type": "disk",
"folders": "/"
},
{
"key": "│ {#35} memory {#keys}│",
"type": "memory"
},
{
"key": "│ {#36} network {#keys}│",
"type": "localip",
"format": "{ipv4} ({ifname})"
},
{
"key": "├───────────┤",
"type": "custom"
},
{
"key": "│ {#39} colors {#keys}│",
"type": "colors",
"symbol": "circle"
},
{
"key": "╰───────────╯",
"type": "custom"
}
]
}
This diff is collapsed.
Click to expand it.
nvim
@
37c0e717
Compare
c7b0da99
...
37c0e717
Subproject commit
c7b0da9900a5dd2fe00a2641425c57b681b24800
Subproject commit
37c0e7176f075b407c46eb1835e4decbd0bd2c8e
This diff is collapsed.
Click to expand it.
.zshrc
View file @
4ee4ee15
...
...
@@ -130,6 +130,8 @@ tn () {
alias
lt
=
"eza -l --icons -T --sort=time"
alias
ff
=
"fastfetch"
# ---------- ZSH -----------
HISTSIZE
=
1000000
SAVEHIST
=
$HISTSIZE
...
...
This diff is collapsed.
Click to expand it.