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
eb8d2b408df161bef73fa7ec3c384e12cd44c9f6 to 649d66f0e4b90016724d8987fb20f14d0bdab54c
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
649d66f0e4b90016724d8987fb20f14d0bdab54c
Select Git revision
Branches
master
Swap
Target
iliya.saroukha/dotfiles
Select target project
iliya.saroukha/dotfiles
1 result
eb8d2b408df161bef73fa7ec3c384e12cd44c9f6
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
feat: added fzf-tab plugin and GOPATH
· e6e2e2c7
iliya.saroukha
authored
9 months ago
Verified
e6e2e2c7
feat: hyprland config init
· 649d66f0
iliya.saroukha
authored
9 months ago
Verified
649d66f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.config/hypr/hyprland.conf
+4
-0
4 additions, 0 deletions
.config/hypr/hyprland.conf
.zshrc
+13
-1
13 additions, 1 deletion
.zshrc
with
17 additions
and
1 deletion
.config/hypr/hyprland.conf
0 → 100644
View file @
649d66f0
env
=
LIBVA_DRIVER_NAME
,
nvidia
env
=
XDG_SESSION_TYPE
,
wayland
env
=
GBM_BACKEND
,
nvidia
-
drm
env
=
__
GLX_VENDOR_LIBRARY_NAME
,
nvidia
This diff is collapsed.
Click to expand it.
.zshrc
View file @
649d66f0
...
...
@@ -77,7 +77,9 @@ ZSH_THEME="powerlevel10k/powerlevel10k"
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins
=(
git zsh-autosuggestions zsh-syntax-highlighting
)
plugins
=(
git zsh-autosuggestions zsh-syntax-highlighting fzf-tab
)
fpath+
=
${
ZSH_CUSTOM
:-${
ZSH
:-
~/.oh-my-zsh
}
/custom
}
/plugins/zsh-completions/src
source
$ZSH
/oh-my-zsh.sh
...
...
@@ -155,3 +157,13 @@ export FZF_DEFAULT_OPTS="
export
NVM_DIR
=
"
$HOME
/.nvm"
[
-s
"
$NVM_DIR
/nvm.sh"
]
&&
\.
"
$NVM_DIR
/nvm.sh"
# This loads nvm
[
-s
"
$NVM_DIR
/bash_completion"
]
&&
\.
"
$NVM_DIR
/bash_completion"
# This loads nvm bash_completion
# ----------- GO -----------
export
PATH
=
"
$PATH
:
$(
go
env
GOBIN
)
:
$(
go
env
GOPATH
)
/bin"
# bun completions
[
-s
"/home/iliya/.bun/_bun"
]
&&
source
"/home/iliya/.bun/_bun"
# bun
export
BUN_INSTALL
=
"
$HOME
/.bun"
export
PATH
=
"
$BUN_INSTALL
/bin:
$PATH
"
This diff is collapsed.
Click to expand it.