Add new Font
Added a new font alongside with some quality of life aliases in bashrc regarding fonts
This commit is contained in:
11
README.md
11
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
|
||||
|
||||
@@ -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
|
||||
|
||||
2
dotdrop
2
dotdrop
Submodule dotdrop updated: 74ffe6a1b4...adc4581533
BIN
dotfiles/fonts/Inconsolata-Regular/Inconsolata-Regular.ttf
Normal file
BIN
dotfiles/fonts/Inconsolata-Regular/Inconsolata-Regular.ttf
Normal file
Binary file not shown.
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user