Update
This commit is contained in:
parent
239e0e9c46
commit
ad2e3159b0
|
@ -45,3 +45,6 @@
|
||||||
*.color13: nord15
|
*.color13: nord15
|
||||||
*.color14: nord7
|
*.color14: nord7
|
||||||
*.color15: nord6
|
*.color15: nord6
|
||||||
|
|
||||||
|
Xcursor.theme: Nordzy-cursors
|
||||||
|
Xcursor.size: 32
|
||||||
|
|
|
@ -5,10 +5,19 @@ set --export MANPAGER "sh -c 'col -bx | bat -l man -p'"
|
||||||
set --export QT_QPA_PLATFORMTHEME "gtk2"
|
set --export QT_QPA_PLATFORMTHEME "gtk2"
|
||||||
|
|
||||||
if status is-interactive
|
if status is-interactive
|
||||||
|
|
||||||
# Commands to run in interactive sessions can go here
|
# Commands to run in interactive sessions can go here
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Start X at login
|
||||||
|
if status --is-login
|
||||||
|
if test -z "$DISPLAY" -a $XDG_VTNR = 1
|
||||||
|
exec startx -- -keeptty
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
fish_add_path "$HOME/.local/bin"
|
fish_add_path "$HOME/.local/bin"
|
||||||
|
fish_add_path "$HOME/.cargo/bin"
|
||||||
|
|
||||||
source "$HOME/.config/fish/abbreviations.fish"
|
source "$HOME/.config/fish/abbreviations.fish"
|
||||||
|
|
||||||
|
|
|
@ -100,6 +100,8 @@ def get_wallpaper(screen_number):
|
||||||
wallpaper = f'{wallpaper_dir}p2_1920x1080.png'
|
wallpaper = f'{wallpaper_dir}p2_1920x1080.png'
|
||||||
case '3840x1080':
|
case '3840x1080':
|
||||||
wallpaper = f'{wallpaper_dir}gunter_throne.png'
|
wallpaper = f'{wallpaper_dir}gunter_throne.png'
|
||||||
|
case '5120x1440':
|
||||||
|
wallpaper = f'{wallpaper_dir}p4_5120x1440.png'
|
||||||
case '5760x1080':
|
case '5760x1080':
|
||||||
wallpaper = f'{wallpaper_dir}gunter_throne.png'
|
wallpaper = f'{wallpaper_dir}gunter_throne.png'
|
||||||
case '1760x1262':
|
case '1760x1262':
|
||||||
|
|
1
.vimrc
1
.vimrc
|
@ -25,6 +25,7 @@ Plug 'tpope/vim-commentary'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
Plug 'ryanoasis/vim-devicons'
|
Plug 'ryanoasis/vim-devicons'
|
||||||
Plug 'xuhdev/vim-latex-live-preview'
|
Plug 'xuhdev/vim-latex-live-preview'
|
||||||
|
Plug 'rust-lang/rust.vim'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
colorscheme nord
|
colorscheme nord
|
||||||
|
|
Loading…
Reference in New Issue