chore: update dotfiles

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-02-15 20:42:32 -06:00
parent 358f79c970
commit 0053ea7272
2 changed files with 12 additions and 190 deletions

View File

@ -1,182 +0,0 @@
# Set Default Font
font:
normal:
family: CaskaydiaCove Nerd Font
style: Regular
bold:
family: CaskaydiaCove Nerd Font
style: Bold
italic:
family: CaskaydiaCove Nerd Font
style: Italic
bold_italic:
family: CaskaydiaCove Nerd Font
style: Bold Italic
# Color Schemes
schemes:
one_dark: &one_dark # Default colors
primary:
background: "#282c34"
foreground: "#abb2bf"
# Normal colors
normal:
# NOTE: Use '#131613' for the `black` color if you'd like to see
# black text on the background.
black: "#282c34"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#abb2bf"
# Bright colors
bright:
black: "#5c6370"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#ffffff"
one_light: &one_light # Default colors
primary:
foreground: "#282c34"
background: "#ffffff"
# Normal colors
normal:
# NOTE: Use '#131613' for the `black` color if you'd like to see
# black text on the background.
black: "#282c34"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#abb2bf"
# Bright colors
bright:
black: "#5c6370"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#ffffff"
# Default colors
afterglow: &afterglow
primary:
background: "#2c2c2c"
foreground: "#d6d6d6"
dim_foreground: "#dbdbdb"
bright_foreground: "#d9d9d9"
dim_background: "#202020" # not sure
bright_background: "#3a3a3a" # not sure
# Cursor colors
cursor:
text: "#2c2c2c"
cursor: "#d9d9d9"
# Normal colors
normal:
black: "#1c1c1c"
red: "#bc5653"
green: "#909d63"
yellow: "#ebc17a"
blue: "#7eaac7"
magenta: "#aa6292"
cyan: "#86d3ce"
white: "#cacaca"
# Bright colors
bright:
black: "#636363"
red: "#bc5653"
green: "#909d63"
yellow: "#ebc17a"
blue: "#7eaac7"
magenta: "#aa6292"
cyan: "#86d3ce"
white: "#f7f7f7"
# Dim colors
dim:
black: "#232323"
red: "#74423f"
green: "#5e6547"
yellow: "#8b7653"
blue: "#556b79"
magenta: "#6e4962"
cyan: "#5c8482"
white: "#828282"
material_theme: &material_theme # Default colors
primary:
background: "#1e282d"
foreground: "#c4c7d1"
# Normal colors
normal:
black: "#666666"
red: "#eb606b"
green: "#c3e88d"
yellow: "#f7eb95"
blue: "#80cbc4"
magenta: "#ff2f90"
cyan: "#aeddff"
white: "#ffffff"
# Bright colors
bright:
black: "#ff262b"
red: "#eb606b"
green: "#c3e88d"
yellow: "#f7eb95"
blue: "#7dc6bf"
magenta: "#6c71c4"
cyan: "#35434d"
white: "#ffffff"
monokai_pro: &monokai_pro # Default colors
primary:
background: "#2D2A2E"
foreground: "#FCFCFA"
# Normal colors
normal:
black: "#403E41"
red: "#FF6188"
green: "#A9DC76"
yellow: "#FFD866"
blue: "#FC9867"
magenta: "#AB9DF2"
cyan: "#78DCE8"
white: "#FCFCFA"
# Bright colors
bright:
black: "#727072"
red: "#FF6188"
green: "#A9DC76"
yellow: "#FFD866"
blue: "#FC9867"
magenta: "#AB9DF2"
cyan: "#78DCE8"
white: "#FCFCFA"
colors: *one_dark

View File

@ -45,6 +45,7 @@ inoremap <silent><expr> <c-space> coc#refresh()
" coc.nvim quick fix
nmap <leader>qf <Plug>(coc-fix-current)
" Use tab for trigger completion with characters ahead and navigate.
" Used by coc.nvim
inoremap <silent><expr> <TAB>
@ -152,20 +153,23 @@ Plug 'terryma/vim-multiple-cursors'
" File Browser
Plug 'preservim/nerdtree'
" NerdTree Icons (Should be last according to docs)
Plug 'ryanoasis/vim-devicons'
" Better Rust Synatax Highlighting
Plug 'arzg/vim-rust-syntax-ext'
" Auto-close brackets
Plug 'jiangmiao/auto-pairs'
" NerdTree Icons (Should be last according to docs)
Plug 'ryanoasis/vim-devicons'
call plug#end()
" Autosave with rust-fmt (Rust Only)
" Call RusftFmt on write to buffer
let g:rustfmt_autosave = 1
" Configuration
set noshowmode " Not Needed because we have Lightline
set noshowmode " Lightline requires we turn this off
colorscheme one
syntax enable
" Custom Shortcuts
nnoremap <silent><nowait> <space>o :NERDTreeToggle<CR>
nnoremap <silent><nowait> <space>s :TagbarToggle<CR>