diff --git a/README.md b/README.md index a8825c7..4e755dc 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ My personal configurations, managed with the 'dotdrop' submodule. + Image-Viewer: `feh` + Locking: `i3lock-color` + Movie-Viewer: `mpv` -+ Music: `spotify` with [spicetify-cli](https://github.com/khanhas/spicetify-cli/) ++ Music: `spotify` with [spicetify-cli](https://github.com/khanhas/spicetify-cli/) 'Dribbblish Nord-Dark' + Notifications: `dunst` + PDF-Viewer: `zathura` -+ Transparency: `compton` ++ Transparency: `picom` diff --git a/config.yaml b/config.yaml index 780095a..7abb98c 100644 --- a/config.yaml +++ b/config.yaml @@ -163,6 +163,3 @@ profiles: nvim: dotfiles: - f_nvim - nvim: - dotfiles: - - f_nvim diff --git a/dotfiles/Xresources b/dotfiles/Xresources index 2670f5c..4bf5aca 100644 --- a/dotfiles/Xresources +++ b/dotfiles/Xresources @@ -19,42 +19,42 @@ XTerm.vt100.translations: #override \n\ ! ! Repository: https://github.com/arcticicestudio/nord-xresources ! ! License: MIT ! -! #define nord0 #2E3440 -! #define nord1 #3B4252 -! #define nord2 #434C5E -! #define nord3 #4C566A -! #define nord4 #D8DEE9 -! #define nord5 #E5E9F0 -! #define nord6 #ECEFF4 -! #define nord7 #8FBCBB -! #define nord8 #88C0D0 -! #define nord9 #81A1C1 -! #define nord10 #5E81AC -! #define nord11 #BF616A -! #define nord12 #D08770 -! #define nord13 #EBCB8B -! #define nord14 #A3BE8C -! #define nord15 #B48EAD -! -! *.foreground: nord4 -! *.background: nord0 -! *.cursorColor: nord4 -! *fading: 35 -! *fadeColor: nord3 -! -! *.color0: nord1 -! *.color1: nord11 -! *.color2: nord14 -! *.color3: nord13 -! *.color4: nord9 -! *.color5: nord15 -! *.color6: nord8 -! *.color7: nord5 -! *.color8: nord3 -! *.color9: nord11 -! *.color10: nord14 -! *.color11: nord13 -! *.color12: nord9 -! *.color13: nord15 -! *.color14: nord7 -! *.color15: nord6 +#define nord0 #2E3440 +#define nord1 #3B4252 +#define nord2 #434C5E +#define nord3 #4C566A +#define nord4 #D8DEE9 +#define nord5 #E5E9F0 +#define nord6 #ECEFF4 +#define nord7 #8FBCBB +#define nord8 #88C0D0 +#define nord9 #81A1C1 +#define nord10 #5E81AC +#define nord11 #BF616A +#define nord12 #D08770 +#define nord13 #EBCB8B +#define nord14 #A3BE8C +#define nord15 #B48EAD + +*.foreground: nord4 +*.background: nord0 +*.cursorColor: nord4 +*fading: 35 +*fadeColor: nord3 + +*.color0: nord1 +*.color1: nord11 +*.color2: nord14 +*.color3: nord13 +*.color4: nord9 +*.color5: nord15 +*.color6: nord8 +*.color7: nord5 +*.color8: nord3 +*.color9: nord11 +*.color10: nord14 +*.color11: nord13 +*.color12: nord9 +*.color13: nord15 +*.color14: nord7 +*.color15: nord6 diff --git a/dotfiles/vimrc b/dotfiles/vimrc index a91c34b..14d2258 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -69,8 +69,9 @@ let g:nord_underline = 1 " autocomplete if has('nvim') Plugin 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } + + let g:deoplete#enable_at_startup = 1 endif -let g:deoplete#enable_at_startup = 1 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" call vundle#end() @@ -83,6 +84,7 @@ set colorcolumn=81 filetype indent plugin on " ------------------------------------- General -------------------------------- +set number set relativenumber ":highlight LineNr ctermfg=white "color set showmatch " Highlights paranthesis diff --git a/dotfiles/zshrc b/dotfiles/zshrc index eef8d52..b6771d3 100644 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -39,6 +39,7 @@ alias mv='mv -i' # Ask before removal alias gaa="git add ." alias gst="git status" +alias gsh="git show" alias gd="git diff" alias gc="git commit -v" alias gc!="git commit -v --amend"