diff --git a/README.md b/README.md index 1142ea4..2fd2853 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ -# Dotfiles -My personal dotfiles, managed with the 'dotdrop' submodule +Dotfiles +======== + +My personal dotfiles/ configurations, managed with the 'dotdrop' submodule + + +Currently using: ++ `OneDark` Colortheme with `lightline` Statusbar for vim ++ `Inconsolata` Font from google for Xterm diff --git a/config.yaml b/config.yaml index 1fe1545..4750d56 100644 --- a/config.yaml +++ b/config.yaml @@ -21,6 +21,9 @@ dotfiles: f_i3status_config: src: config/i3status/config dst: ~/.config/i3status/config + f_inconsolata-regular.ttf: + src: fonts/Inconsolata-Regular/Inconsolata-Regular.ttf + dst: ~/.fonts/Inconsolata-Regular/Inconsolata-Regular.ttf profiles: default: dotfiles: @@ -30,3 +33,4 @@ profiles: - f_xresources - f_config - f_i3status_config + - f_inconsolata-regular.ttf diff --git a/dotdrop b/dotdrop index 74ffe6a..adc4581 160000 --- a/dotdrop +++ b/dotdrop @@ -1 +1 @@ -Subproject commit 74ffe6a1b45ba49997ed6d1bd568af95aed13425 +Subproject commit adc4581533cba49d9e364c0d11fdaea874c71bc3 diff --git a/dotfiles/fonts/Inconsolata-Regular/Inconsolata-Regular.ttf b/dotfiles/fonts/Inconsolata-Regular/Inconsolata-Regular.ttf new file mode 100644 index 0000000..592ccd2 Binary files /dev/null and b/dotfiles/fonts/Inconsolata-Regular/Inconsolata-Regular.ttf differ diff --git a/dotfiles/vimrc b/dotfiles/vimrc index c2c3350..2a86d9d 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -4,13 +4,13 @@ set nocompatible set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() -" Plugins +" Plugins - load with :PluginInstall Plugin 'VundleVim/Vundle.vim' -Plugin 'jiangmiao/auto-pairs' Plugin 'scrooloose/nerdtree' Plugin 'editorconfig/editorconfig-vim' Plugin 'maxboisvert/vim-simple-complete' Plugin 'itchyny/vim-gitbranch' +Plugin 'tmsvg/pear-tree' " Colorscheme Plugin 'joshdick/onedark.vim' @@ -24,6 +24,7 @@ filetype plugin indent on " Plugin Settings " NerdTree let NERDTreeShowHidden=1 + " Lightline Statusbar " absolutepath or filename set laststatus=2 @@ -37,10 +38,27 @@ let g:lightline = { \ 'gitbranch': 'gitbranch#name' \ }, \ } + " Onedark Colorscheme let g:onedark_hide_endofbuffer=1 let g:onedark_terminal_italics=1 +colorscheme onedark +" PearTree +let g:pear_tree_smart_openers=1 +let g:pear_tree_smart_closers=1 +let g:pear_tree_smart_backspace=1 + +let g:pear_tree_pairs = { + \ '(': {'closer': ')'}, + \ '[': {'closer': ']'}, + \ '{': {'closer': '}'}, + \ "'": {'closer': "'"}, + \ '"': {'closer': '"'}, + \ '<': {'closer': '>'} + \ } + +" Other configurations " Coloooooors syntax on colorscheme onedark