main
Tran Hau 2020-03-28 23:47:54 +07:00
commit c75881a97d
6 changed files with 83 additions and 0 deletions

53
alacritty/alacritty.yml Normal file
View File

@ -0,0 +1,53 @@
font:
normal:
family: Fira Code
style: Regular
bold:
family: Fira Code
style: Bold
italic:
family: Fira Code
style: Italic
bold_italic:
family: Fira Code
style: Bold Italic
size: 12.0
# https://github.com/alacritty/alacritty/wiki/Color-schemes
colors:
primary:
background: "#181818"
foreground: "#d8d8d8"
cursor:
text: "#d8d8d8"
cursor: "#d8d8d8"
normal:
black: "#181818"
red: "#ab4642"
green: "#a1b56c"
yellow: "#f7ca88"
blue: "#7cafc2"
magenta: "#ba8baf"
cyan: "#86c1b9"
white: "#d8d8d8"
bright:
black: "#585858"
red: "#ab4642"
green: "#a1b56c"
yellow: "#f7ca88"
blue: "#7cafc2"
magenta: "#ba8baf"
cyan: "#86c1b9"
white: "#f8f8f8"
background_opacity: 0.95
selection:
save_to_clipboard: true

3
bat/config Normal file
View File

@ -0,0 +1,3 @@
--theme="base16"
--plain

8
install.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
rsync -vah ./tmux/tmux.conf ~/.tmux.conf
rsync -vah --delete ./alacritty ~/.config/
rsync -vah --delete ./bat ~/.config/
rsync -vah --delete ./mpv ~/.config/
rsync -vah --delete ./nvim ~/.config/

8
mpv/mpv.conf Normal file
View File

@ -0,0 +1,8 @@
profile=gpu-hq
scale=ewa_lanczossharp
cscale=ewa_lanczossharp
video-sync=display-resample
interpolation
tscale=oversample
keep-open=yes

10
nvim/init.vim Normal file
View File

@ -0,0 +1,10 @@
set completeopt=menuone,noinsert,noselect
set noswapfile
set number
set scrolloff=2
set virtualedit=block
set tabstop=8
set softtabstop=4
set shiftwidth=4
set expandtab

1
tmux/tmux.conf Normal file
View File

@ -0,0 +1 @@
set -g default-terminal "screen-256color"