Updated scripts
This commit is contained in:
parent
b9e9603383
commit
c7155eb5b5
@ -5,8 +5,10 @@ normal={family="RobotoMonoNerdFont", style="Regular"}
|
||||
|
||||
[colors.primary]
|
||||
foreground="#c6c6c6"
|
||||
# background="#262626"
|
||||
background="#000000"
|
||||
dim_foreground="#707070"
|
||||
bright_foreground="#ffffff"
|
||||
background="#262626"
|
||||
# background="#000000"
|
||||
|
||||
[colors.normal]
|
||||
black="#000000"
|
||||
@ -28,6 +30,16 @@ magenta="#d7d7af"
|
||||
cyan="#a0a0a0"
|
||||
white="#eeeeee"
|
||||
|
||||
[colors.dim]
|
||||
black="#000000"
|
||||
red="#d75400"
|
||||
green="#afd787"
|
||||
yellow="#d7af5f"
|
||||
blue="#87afd7"
|
||||
magenta="#d7d7af"
|
||||
cyan="#a0a0a0"
|
||||
white="#eeeeee"
|
||||
|
||||
[selection]
|
||||
save_to_clipboard = true
|
||||
|
||||
@ -38,5 +50,5 @@ padding={x=2}
|
||||
[env]
|
||||
TERM="xterm-256color"
|
||||
|
||||
[mouse]
|
||||
hide_when_typing = true
|
||||
# [mouse]
|
||||
# hide_when_typing = true
|
||||
|
||||
@ -21,7 +21,7 @@ exec-once = waybar
|
||||
exec-once = systemctl --user start hypridle
|
||||
exec-once = systemctl --user start sunshine
|
||||
|
||||
exec-once = [workspace 1] $terminal
|
||||
exec-once = [workspace 1] $terminal tmux new-session -d 'nvim'
|
||||
|
||||
#############################
|
||||
### ENVIRONMENT VARIABLES ###
|
||||
@ -138,6 +138,10 @@ input {
|
||||
}
|
||||
}
|
||||
|
||||
cursor {
|
||||
hide_on_key_press = true
|
||||
}
|
||||
|
||||
gestures {
|
||||
workspace_swipe = false
|
||||
}
|
||||
@ -206,7 +210,7 @@ bind = $mainMod, 9, workspace, 9
|
||||
bind = $mainMod, 0, workspace, 10
|
||||
|
||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||
bind = $mainMod CTRL, 1, movetoworkspace, 1
|
||||
bind = $mainMod CTRL, 1, movetoworkspace, 1
|
||||
bind = $mainMod CTRL, 2, movetoworkspace, 2
|
||||
bind = $mainMod CTRL, 3, movetoworkspace, 3
|
||||
bind = $mainMod CTRL, 4, movetoworkspace, 4
|
||||
|
||||
@ -336,7 +336,31 @@ require("lazy").setup({
|
||||
{
|
||||
"ibhagwan/fzf-lua",
|
||||
dependencies = { "echasnovski/mini.icons" },
|
||||
opts = { "fzf-tmux" },
|
||||
opts = {
|
||||
"fzf-tmux",
|
||||
fzf_colors = {
|
||||
true, -- inherit fzf colors that aren't specified below from
|
||||
-- the auto-generated theme similar to `fzf_colors=true`
|
||||
["fg"] = { "fg", "CursorLine" },
|
||||
["bg"] = { "bg", "Black" },
|
||||
["hl"] = { "fg", "Comment" },
|
||||
["fg+"] = { "fg", "Normal", "underline" },
|
||||
["bg+"] = { "bg", { "CursorLine", "Normal" } },
|
||||
["hl+"] = { "fg", "Statement" },
|
||||
["info"] = { "fg", "PreProc" },
|
||||
["prompt"] = { "fg", "Conditional" },
|
||||
["pointer"] = { "fg", "Exception" },
|
||||
["marker"] = { "fg", "Keyword" },
|
||||
["spinner"] = { "fg", "Label" },
|
||||
["header"] = { "fg", "Comment" },
|
||||
["gutter"] = "-1",
|
||||
},
|
||||
files = {
|
||||
git_icons = true, -- show git icons?
|
||||
file_icons = true, -- show file icons (true|"devicons"|"mini")?
|
||||
color_icons = true, -- colorize file|git icons
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- GUI ------------------------------------------------------
|
||||
|
||||
@ -258,7 +258,9 @@ if [ "${ROLES[TERMINAL]}" == "yes" ]; then
|
||||
ln -sf ~/linuxbox/config/alacritty/alacritty.toml ~/.config/alacritty/alacritty.toml
|
||||
ln -sf ~/linuxbox/config/lazygit/config.yml ~/.config/lazygit/config.yml
|
||||
|
||||
nvim --headless "+Lazy! sync" +qa
|
||||
if [ -d ~/.local/share/nvim/lazy ]; then
|
||||
nvim --headless "+Lazy! sync" +qa
|
||||
fi
|
||||
|
||||
printf -- '\033[33m Installing fzf\n\033[37m'
|
||||
rm -rf ~/.fzf
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user