archived old stuff;new layout
This commit is contained in:
1
common/fish/config.fish
Normal file
1
common/fish/config.fish
Normal file
@ -0,0 +1 @@
|
||||
set fish_greeting
|
36
common/fish/fish_variables
Normal file
36
common/fish/fish_variables
Normal file
@ -0,0 +1,36 @@
|
||||
# This file contains fish universal variable definitions.
|
||||
# VERSION: 3.0
|
||||
SETUVAR __fish_initialized:3400
|
||||
SETUVAR _fish_abbr_apt:sudo\x20nala
|
||||
SETUVAR _fish_abbr_fp:flatpak
|
||||
SETUVAR _fish_abbr_nf:neofetch
|
||||
SETUVAR fish_color_autosuggestion:555\x1ebrblack
|
||||
SETUVAR fish_color_cancel:\x2dr
|
||||
SETUVAR fish_color_command:005fd7
|
||||
SETUVAR fish_color_comment:990000
|
||||
SETUVAR fish_color_cwd:green
|
||||
SETUVAR fish_color_cwd_root:red
|
||||
SETUVAR fish_color_end:009900
|
||||
SETUVAR fish_color_error:ff0000
|
||||
SETUVAR fish_color_escape:00a6b2
|
||||
SETUVAR fish_color_history_current:\x2d\x2dbold
|
||||
SETUVAR fish_color_host:normal
|
||||
SETUVAR fish_color_host_remote:yellow
|
||||
SETUVAR fish_color_match:\x2d\x2dbackground\x3dbrblue
|
||||
SETUVAR fish_color_normal:normal
|
||||
SETUVAR fish_color_operator:00a6b2
|
||||
SETUVAR fish_color_param:00afff
|
||||
SETUVAR fish_color_quote:999900
|
||||
SETUVAR fish_color_redirection:00afff
|
||||
SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SETUVAR fish_color_status:red
|
||||
SETUVAR fish_color_user:brgreen
|
||||
SETUVAR fish_color_valid_path:\x2d\x2dunderline
|
||||
SETUVAR fish_greeting:\x1d
|
||||
SETUVAR fish_key_bindings:fish_default_key_bindings
|
||||
SETUVAR fish_pager_color_completion:\x1d
|
||||
SETUVAR fish_pager_color_description:B3A06D\x1eyellow
|
||||
SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
||||
SETUVAR fish_pager_color_selected_background:\x2dr
|
6
common/fish/functions/fish_prompt.fish
Normal file
6
common/fish/functions/fish_prompt.fish
Normal file
@ -0,0 +1,6 @@
|
||||
function fish_prompt
|
||||
set_color $fish_color_cwd
|
||||
echo -n (basename $PWD)
|
||||
set_color normal
|
||||
echo -n ' » '
|
||||
end
|
6
common/nvim/.netrwhist
Normal file
6
common/nvim/.netrwhist
Normal file
@ -0,0 +1,6 @@
|
||||
let g:netrw_dirhistmax =10
|
||||
let g:netrw_dirhistcnt =4
|
||||
let g:netrw_dirhist_4='/home/pim/.config/neofetch'
|
||||
let g:netrw_dirhist_3='/home/pim/.config/fish'
|
||||
let g:netrw_dirhist_2='/home/pim/.config/kitty'
|
||||
let g:netrw_dirhist_1='/home/pim/.config/polybar/material'
|
@ -1 +0,0 @@
|
||||
@theme "~/.config/rofi/themes/mytheme.rasi"
|
@ -1,106 +0,0 @@
|
||||
/*******************************************************************************
|
||||
* ROFI VERTICAL THEME USING THE NORD COLOR PALETTE
|
||||
* User : LR-Tech
|
||||
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
|
||||
* Nord Project Repo : https://github.com/arcticicestudio/nord
|
||||
*******************************************************************************/
|
||||
|
||||
* {
|
||||
font: "RobotoMono 11";
|
||||
|
||||
nord0: #222222;
|
||||
nord1: #3b4252;
|
||||
nord2: #434c5e;
|
||||
nord3: #4c566a;
|
||||
|
||||
nord4: #ffffff;
|
||||
nord5: #e5e9f0;
|
||||
nord6: #eceff4;
|
||||
|
||||
nord7: #8fbcbb;
|
||||
nord8: #888;
|
||||
nord9: #81a1c1;
|
||||
nord10: #5e81ac;
|
||||
nord11: #bf616a;
|
||||
|
||||
nord12: #d08770;
|
||||
nord13: #ebcb8b;
|
||||
nord14: #a3be8c;
|
||||
nord15: #b48ead;
|
||||
|
||||
background-color: transparent;
|
||||
text-color: @nord4;
|
||||
accent-color: @nord8;
|
||||
|
||||
margin: 2px;
|
||||
padding: 0px;
|
||||
spacing: 0px;
|
||||
}
|
||||
|
||||
window {
|
||||
background-color: @nord0;
|
||||
border-color: @accent-color;
|
||||
|
||||
location: center;
|
||||
width: 440px;
|
||||
y-offset: -220px;
|
||||
border: 2px;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
padding: 8px 12px;
|
||||
spacing: 12px;
|
||||
children: [ prompt, entry ];
|
||||
}
|
||||
|
||||
prompt, entry, element-text, element-icon {
|
||||
vertical-align: 0.5;
|
||||
}
|
||||
|
||||
prompt {
|
||||
text-color: @accent-color;
|
||||
}
|
||||
|
||||
listview {
|
||||
lines: 8;
|
||||
columns: 1;
|
||||
|
||||
fixed-height: false;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 8px;
|
||||
spacing: 8px;
|
||||
}
|
||||
|
||||
element normal urgent {
|
||||
text-color: @nord13;
|
||||
}
|
||||
|
||||
element normal active {
|
||||
text-color: @accent-color;
|
||||
}
|
||||
|
||||
element selected {
|
||||
text-color: @nord0;
|
||||
}
|
||||
|
||||
element selected normal {
|
||||
background-color: @accent-color;
|
||||
}
|
||||
|
||||
element selected urgent {
|
||||
background-color: @nord13;
|
||||
}
|
||||
|
||||
element selected active {
|
||||
background-color: @nord8;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 0.75em;
|
||||
}
|
||||
|
||||
element-text {
|
||||
text-color: inherit;
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
# ________
|
||||
# | _____ \
|
||||
# | | _/ / Pim Nelissen
|
||||
# | | /__/ https://pim.wtf/
|
||||
# | |
|
||||
# \_|
|
||||
|
||||
# Zathura config.
|
||||
|
||||
set recolor true
|
||||
set recolor-lightcolor \#191919
|
||||
set default-bg \#191919
|
||||
set guioptions none
|
File diff suppressed because it is too large
Load Diff
@ -1,51 +0,0 @@
|
||||
# ________
|
||||
# | _____ \
|
||||
# | | _/ / Pim Nelissen
|
||||
# | | /__/ https://pim.wtf/
|
||||
# | |
|
||||
# \_|
|
||||
|
||||
# Zshell configuration.
|
||||
|
||||
|
||||
# Terminal prompt in minimalist format.
|
||||
PS1="%F{cyan}%~%f %F{white}»%f "
|
||||
|
||||
# History settings.
|
||||
HISTFILE=~/.cache/zsh/histfile
|
||||
HISTSIZE=1000
|
||||
SAVEHIST=2500
|
||||
|
||||
export GPG_TTY=$(tty)
|
||||
|
||||
# Load autocompletion & include hidden dotfiles.
|
||||
zstyle :compinstall filename '/home/pim/.zshrc'
|
||||
zstyle ':completion:*' menu select
|
||||
zmodload zsh/complist
|
||||
autoload -Uz compinit
|
||||
compinit
|
||||
_comp_options+=(globdots)
|
||||
|
||||
# Vi mode toggle.
|
||||
bindkey -v
|
||||
|
||||
# Vi keys for the tab completion menu.
|
||||
bindkey -M menuselect 'h' vi-backward-char
|
||||
bindkey -M menuselect 'k' vi-up-line-or-history
|
||||
bindkey -M menuselect 'l' vi-forward-char
|
||||
bindkey -M menuselect 'j' vi-down-line-or-history
|
||||
bindkey -v '^?' backward-delete-char
|
||||
|
||||
# Aliases.
|
||||
alias ls='ls --color=auto'
|
||||
alias ll='ls -l --color=auto'
|
||||
alias vim='nvim'
|
||||
alias top='htop'
|
||||
|
||||
# Power aliases.
|
||||
alias shutdown='sudo shutdown -h now'
|
||||
alias sleep='betterlockscreen -s -l dim && sudo zzz'
|
||||
alias reboot='sudo reboot'
|
||||
|
||||
# Load extensions.
|
||||
source ~/.config/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
Reference in New Issue
Block a user