Skip to content

Commit

Permalink
Added gtk configs and changed nvim config.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomontezano committed Aug 26, 2020
1 parent c051988 commit a9f700c
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .config/X11/xresources
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
! Dracula Xresources Palette
*.foreground: #F8F8F2
*.background: #282A36
*.color0: #000000
*.color8: #4D4D4D
*.color1: #FF5555
*.color9: #FF6E67
*.color2: #50FA7B
*.color10: #5AF78E
*.color3: #F1FA8C
*.color11: #F4F99D
*.color4: #BD93F9
*.color12: #CAA9FA
*.color5: #FF79C6
*.color13: #FF92D0
*.color6: #8BE9FD
*.color14: #9AEDFE
*.color7: #BFBFBF
*.color15: #E6E6E6
18 changes: 18 additions & 0 deletions .config/gtk-2.0/gtkrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# DO NOT EDIT! This file will be overwritten by LXAppearance.
# Any customization should be done in ~/.gtkrc-2.0.mine instead.

include "/home/pepper/.gtkrc-2.0.mine"
gtk-theme-name="Dracula"
gtk-icon-theme-name="Adwaita"
gtk-font-name="mononoki Nerd Font 11"
gtk-cursor-theme-name="Adwaita"
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=1
gtk-menu-images=1
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=1
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle="hintfull"
15 changes: 15 additions & 0 deletions .config/gtk-3.0/settings.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[Settings]
gtk-theme-name=Dracula
gtk-icon-theme-name=Adwaita
gtk-font-name=mononoki Nerd Font 11
gtk-cursor-theme-name=Adwaita
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=1
gtk-menu-images=1
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=1
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle=hintfull
4 changes: 2 additions & 2 deletions .config/nvim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ set nocompatible " be iMproved, required
filetype off " required

" Set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.config/vim/bundle/Vundle.vim

call vundle#begin() " Required, all plugins must appear after this line.
call vundle#begin('~/.config/vim/bundle/') " Required, all plugins must appear after this line.

Plugin 'gmarik/Vundle.vim' " Vundle
Plugin 'itchyny/lightline.vim' " Lightline statusbar
Expand Down

0 comments on commit a9f700c

Please sign in to comment.