mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-21 14:55:26 +00:00
Update: vim->vimx, alacritty theme, added junction flatpak
This commit is contained in:
parent
e62187e510
commit
bada246014
3 changed files with 32 additions and 11 deletions
|
@ -139,12 +139,12 @@ schemes:
|
||||||
primary:
|
primary:
|
||||||
background: '0x1d1f21'
|
background: '0x1d1f21'
|
||||||
foreground: '0xc5c8c6'
|
foreground: '0xc5c8c6'
|
||||||
|
|
||||||
# Colors the cursor will use if `custom_cursor_colors` is true
|
# Colors the cursor will use if `custom_cursor_colors` is true
|
||||||
cursor:
|
cursor:
|
||||||
text: '0x1d1f21'
|
text: '0x1d1f21'
|
||||||
cursor: '0xc5c8c6'
|
cursor: '0xc5c8c6'
|
||||||
|
|
||||||
# Normal colors
|
# Normal colors
|
||||||
normal:
|
normal:
|
||||||
black: '0x1d1f21'
|
black: '0x1d1f21'
|
||||||
|
@ -155,17 +155,25 @@ schemes:
|
||||||
magenta: '0xb294bb'
|
magenta: '0xb294bb'
|
||||||
cyan: '0x8abeb7'
|
cyan: '0x8abeb7'
|
||||||
white: '0xc5c8c6'
|
white: '0xc5c8c6'
|
||||||
|
|
||||||
# Bright colors
|
# Bright colors
|
||||||
bright:
|
bright:
|
||||||
black: '0x969896'
|
black: '0x969896'
|
||||||
red: '0xde935f'
|
red: '0xcc6666'
|
||||||
green: '0x282a2e'
|
green: '0xb5bd68'
|
||||||
yellow: '0x373b41'
|
yellow: '0xf0c674'
|
||||||
blue: '0xb4b7b4'
|
blue: '0x81a2be'
|
||||||
magenta: '0xe0e0e0'
|
magenta: '0xb294bb'
|
||||||
cyan: '0xa3685a'
|
cyan: '0x8abeb7'
|
||||||
white: '0xffffff'
|
white: '0xffffff'
|
||||||
|
|
||||||
|
indexed_colors:
|
||||||
|
- { index: 16, color: '0xde935f' }
|
||||||
|
- { index: 17, color: '0xa3685a' }
|
||||||
|
- { index: 18, color: '0x282a2e' }
|
||||||
|
- { index: 19, color: '0x373b41' }
|
||||||
|
- { index: 20, color: '0xb4b7b4' }
|
||||||
|
- { index: 21, color: '0xe0e0e0' }
|
||||||
# Base16 Dracula 256 - alacritty color config
|
# Base16 Dracula 256 - alacritty color config
|
||||||
# Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula)
|
# Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula)
|
||||||
dracula: &drakula
|
dracula: &drakula
|
||||||
|
|
|
@ -19,4 +19,6 @@
|
||||||
- com.github.unrud.VideoDownloader
|
- com.github.unrud.VideoDownloader
|
||||||
- fyi.zoey.Boop-GTK
|
- fyi.zoey.Boop-GTK
|
||||||
- nl.hjdskes.gcolor3
|
- nl.hjdskes.gcolor3
|
||||||
|
- re.sonny.Junction
|
||||||
|
- org.gnome.DejaDup
|
||||||
state: present
|
state: present
|
||||||
|
|
|
@ -1,8 +1,19 @@
|
||||||
- name: Install vim
|
- name: Install vim (RHEL based)
|
||||||
become: true
|
become: true
|
||||||
package:
|
package:
|
||||||
name: vim
|
name:
|
||||||
|
- vim-X11
|
||||||
|
- vim-common
|
||||||
|
- vim-minimal
|
||||||
state: latest
|
state: latest
|
||||||
|
when: ansible_facts['os_family'] == "RedHat"
|
||||||
|
|
||||||
|
- name: Install vim (Debian based)
|
||||||
|
become: true
|
||||||
|
package:
|
||||||
|
name: vim-gtk
|
||||||
|
state: present
|
||||||
|
when: ansible_facts['os_family'] == "Debian"
|
||||||
|
|
||||||
- name: Prepare vim...
|
- name: Prepare vim...
|
||||||
file:
|
file:
|
||||||
|
|
Loading…
Reference in a new issue