Update
This commit is contained in:
37
.config/alacritty/alacritty.yml
Normal file
37
.config/alacritty/alacritty.yml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
window:
|
||||||
|
decorations: none
|
||||||
|
start_maximized: true
|
||||||
|
|
||||||
|
scrolling:
|
||||||
|
history: 0
|
||||||
|
|
||||||
|
tabspaces: 4
|
||||||
|
|
||||||
|
font:
|
||||||
|
size: 11.0
|
||||||
|
|
||||||
|
# dracula color theme
|
||||||
|
colors:
|
||||||
|
primary:
|
||||||
|
background: '0x282a36'
|
||||||
|
foreground: '0xf8f8f2'
|
||||||
|
|
||||||
|
normal:
|
||||||
|
black: '0x000000'
|
||||||
|
red: '0xff5555'
|
||||||
|
green: '0x50fa7b'
|
||||||
|
yellow: '0xf1fa8c'
|
||||||
|
blue: '0xcaa9fa'
|
||||||
|
magenta: '0xff79c6'
|
||||||
|
cyan: '0x8be9fd'
|
||||||
|
white: '0xbfbfbf'
|
||||||
|
|
||||||
|
bright:
|
||||||
|
black: '0x575b70'
|
||||||
|
red: '0xff6e67'
|
||||||
|
green: '0x5af78e'
|
||||||
|
yellow: '0xf4f99d'
|
||||||
|
blue: '0xcaa9fa'
|
||||||
|
magenta: '0xff92d0'
|
||||||
|
cyan: '0x9aedfe'
|
||||||
|
white: '0xe6e6e6'
|
||||||
8
.config/fish/config.fish
Normal file
8
.config/fish/config.fish
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
set -xU LESS_TERMCAP_md (printf "\e[01;31m")
|
||||||
|
set -xU LESS_TERMCAP_me (printf "\e[0m")
|
||||||
|
set -xU LESS_TERMCAP_se (printf "\e[0m")
|
||||||
|
set -xU LESS_TERMCAP_so (printf "\e[01;44;33m")
|
||||||
|
set -xU LESS_TERMCAP_ue (printf "\e[0m")
|
||||||
|
set -xU LESS_TERMCAP_us (printf "\e[01;32m")
|
||||||
|
set -xU PAGER less
|
||||||
|
set -xU EDITOR nvim
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
# This file contains fish universal variable definitions.
|
|
||||||
# VERSION: 3.0
|
|
||||||
SETUVAR __fish_init_2_39_8:\x1d
|
|
||||||
SETUVAR __fish_init_2_3_0:\x1d
|
|
||||||
SETUVAR __fish_init_3_x:\x1d
|
|
||||||
SETUVAR fish_color_autosuggestion:BD93F9
|
|
||||||
SETUVAR fish_color_cancel:\x2dr
|
|
||||||
SETUVAR fish_color_command:F8F8F2
|
|
||||||
SETUVAR fish_color_comment:6272A4
|
|
||||||
SETUVAR fish_color_cwd:green
|
|
||||||
SETUVAR fish_color_cwd_root:red
|
|
||||||
SETUVAR fish_color_end:50FA7B
|
|
||||||
SETUVAR fish_color_error:FFB86C
|
|
||||||
SETUVAR fish_color_escape:00a6b2
|
|
||||||
SETUVAR fish_color_history_current:\x2d\x2dbold
|
|
||||||
SETUVAR fish_color_host:normal
|
|
||||||
SETUVAR fish_color_match:\x2d\x2dbackground\x3dbrblue
|
|
||||||
SETUVAR fish_color_normal:normal
|
|
||||||
SETUVAR fish_color_operator:00a6b2
|
|
||||||
SETUVAR fish_color_param:FF79C6
|
|
||||||
SETUVAR fish_color_quote:F1FA8C
|
|
||||||
SETUVAR fish_color_redirection:8BE9FD
|
|
||||||
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_vi_key_bindings
|
|
||||||
SETUVAR fish_pager_color_completion:normal
|
|
||||||
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
|
|
||||||
3
.config/fish/functions/fish_mode_prompt.fish
Normal file
3
.config/fish/functions/fish_mode_prompt.fish
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
function fish_mode_prompt
|
||||||
|
# Turns off mode indicator
|
||||||
|
end
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
function fish_prompt --description 'Write out the prompt, prepending the Debian chroot environment if present'
|
|
||||||
if not set -q __fish_prompt_normal
|
|
||||||
set -g __fish_prompt_normal (set_color normal)
|
|
||||||
end
|
|
||||||
|
|
||||||
if not set -q __fish_prompt_chroot_env
|
|
||||||
set -g __fish_prompt_chroot_env (set_color yellow)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Set variable identifying the chroot you work in (used in the prompt below)
|
|
||||||
if not set -q debian_chroot
|
|
||||||
and test -r /etc/debian_chroot
|
|
||||||
set debian_chroot (cat /etc/debian_chroot)
|
|
||||||
end
|
|
||||||
if not set -q __fish_debian_chroot_prompt
|
|
||||||
and set -q debian_chroot
|
|
||||||
and test -n "$debian_chroot"
|
|
||||||
set -g __fish_debian_chroot_prompt "($debian_chroot)"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Prepend the chroot environment if present
|
|
||||||
if set -q __fish_debian_chroot_prompt
|
|
||||||
echo -n -s "$__fish_prompt_chroot_env" "$__fish_debian_chroot_prompt" "$__fish_prompt_normal" ' '
|
|
||||||
end
|
|
||||||
|
|
||||||
switch "$USER"
|
|
||||||
case root toor
|
|
||||||
if not set -q __fish_prompt_cwd
|
|
||||||
if set -q fish_color_cwd_root
|
|
||||||
set -g __fish_prompt_cwd (set_color $fish_color_cwd_root)
|
|
||||||
else
|
|
||||||
set -g __fish_prompt_cwd (set_color $fish_color_cwd)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
echo -n -s "$USER" @ (prompt_hostname) ' ' "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" '# '
|
|
||||||
|
|
||||||
case '*'
|
|
||||||
if not set -q __fish_prompt_cwd
|
|
||||||
set -g __fish_prompt_cwd (set_color $fish_color_cwd)
|
|
||||||
end
|
|
||||||
|
|
||||||
echo -n -s "$USER" @ (prompt_hostname) ' ' "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" '> '
|
|
||||||
|
|
||||||
end
|
|
||||||
end
|
|
||||||
1
.config/nvim/init.vim
Normal file
1
.config/nvim/init.vim
Normal file
@@ -0,0 +1 @@
|
|||||||
|
set number
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
#set show_hidden true
|
|
||||||
set preview_images true
|
|
||||||
set preview_images_method w3m
|
|
||||||
set preview_max_size 20000000
|
|
||||||
|
|
||||||
map mtd chain cut; mkdir !folder; cd !folder; paste; cd ..; shell sleep 0.250; move to=0; console rename%space
|
|
||||||
map <C-d> shell dragon-drag-and-drop -a -x %p
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
[colors]
|
|
||||||
# Base16 Dracula
|
|
||||||
# Author: Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula)
|
|
||||||
|
|
||||||
foreground = #e9e9f4
|
|
||||||
foreground_bold = #f1f2f8
|
|
||||||
cursor = #f1f2f8
|
|
||||||
cursor_foreground = #282936
|
|
||||||
background = rgba(40, 41, 54)
|
|
||||||
|
|
||||||
# 16 color space
|
|
||||||
|
|
||||||
# Black, Gray, Silver, White
|
|
||||||
color0 = #282936
|
|
||||||
color8 = #4d4f68
|
|
||||||
color7 = #e9e9f4
|
|
||||||
color15 = #f7f7fb
|
|
||||||
|
|
||||||
# Red
|
|
||||||
color1 = #ea51b2
|
|
||||||
color9 = #ea51b2
|
|
||||||
|
|
||||||
# Green
|
|
||||||
color2 = #00f769
|
|
||||||
color10 = #00f769
|
|
||||||
|
|
||||||
# Yellow
|
|
||||||
color3 = #ebff87
|
|
||||||
color11 = #ebff87
|
|
||||||
|
|
||||||
# Blue
|
|
||||||
color4 = #62d6e8
|
|
||||||
color12 = #62d6e8
|
|
||||||
|
|
||||||
# Purple
|
|
||||||
color5 = #b45bcf
|
|
||||||
color13 = #b45bcf
|
|
||||||
|
|
||||||
# Teal
|
|
||||||
color6 = #a1efe4
|
|
||||||
color14 = #a1efe4
|
|
||||||
|
|
||||||
# Extra colors
|
|
||||||
color16 = #b45bcf
|
|
||||||
color17 = #00f769
|
|
||||||
color18 = #3a3c4e
|
|
||||||
color19 = #626483
|
|
||||||
color20 = #62d6e8
|
|
||||||
color21 = #f1f2f8
|
|
||||||
|
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
set -sg escape-time 0
|
set -sg escape-time 0
|
||||||
set -wg mode-keys vi
|
set -sg status-style "bg=#000000"
|
||||||
|
|||||||
Reference in New Issue
Block a user