lightmode
E. Almqvist 3 years ago
parent e28113e4ff
commit d18c061323
  1. 16
      alacritty/.config/alacritty/alacritty.yml
  2. 4
      nvim/.config/nvim/coc-settings.json
  3. 1
      nvim/.config/nvim/init.vim

@ -1,14 +1,12 @@
# Configuration for Alacritty, the GPU enhanced terminal emulator. # Configuration for Alacritty, the GPU enhanced terminal emulator.
#
env: env:
TERM: xterm-256color TERM: xterm-256color
window: window:
opacity: 1.0 opacity: 1.0
padding: padding:
x: 12 x: 8
y: 12 y: 8
# Window title # Window title
title: Terminal title: Terminal
@ -29,7 +27,7 @@ font:
# Normal (roman) font face # Normal (roman) font face
normal: normal:
family: Hack family: Space Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Regular style: Regular
@ -37,7 +35,7 @@ font:
# Bold font face # Bold font face
bold: bold:
family: Hack family: Space Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold style: Bold
@ -50,13 +48,13 @@ font:
# Bold italic font face # Bold italic font face
bold_italic: bold_italic:
family: Hack family: Space Mono
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold Italic style: Bold Italic
# Point size # Point size
size: 9 size: 10
# Offset is the extra space around each character. `offset.y` can be thought of # Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing. # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@ -70,7 +68,7 @@ draw_bold_text_with_bright_colors: true
# Colors # Colors
colors: colors:
primary: primary:
background: '0x272a34' background: '0x282c34'
foreground: '0xFFFFFF' foreground: '0xFFFFFF'
normal: normal:
black: '0x1F2229' black: '0x1F2229'

@ -0,0 +1,4 @@
{
"coc.source.OmniSharp.enable" : true,
"coc.source.OmniSharp.triggerCharacters": "."
}

@ -30,6 +30,7 @@ call plug#begin('~/.config/nvim/plugged')
Plug 'arakashic/chromatica.nvim' Plug 'arakashic/chromatica.nvim'
" Plug 'jamestthompson3/nvim-remote-containers' " Docker Container Workspace " Plug 'jamestthompson3/nvim-remote-containers' " Docker Container Workspace
Plug 'slim-template/vim-slim' Plug 'slim-template/vim-slim'
Plug 'OmniSharp/omnisharp-vim'
call plug#end() call plug#end()
set nocompatible set nocompatible

Loading…
Cancel
Save