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
|
Dotfiles
|
||||||
My personal dotfiles, managed with the 'dotdrop' submodule
|
========
|
||||||
|
|
||||||
|
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:
|
f_i3status_config:
|
||||||
src: config/i3status/config
|
src: config/i3status/config
|
||||||
dst: ~/.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:
|
profiles:
|
||||||
default:
|
default:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
@@ -30,3 +33,4 @@ profiles:
|
|||||||
- f_xresources
|
- f_xresources
|
||||||
- f_config
|
- f_config
|
||||||
- f_i3status_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
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
call vundle#begin()
|
call vundle#begin()
|
||||||
|
|
||||||
" Plugins
|
" Plugins - load with :PluginInstall
|
||||||
Plugin 'VundleVim/Vundle.vim'
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
Plugin 'jiangmiao/auto-pairs'
|
|
||||||
Plugin 'scrooloose/nerdtree'
|
Plugin 'scrooloose/nerdtree'
|
||||||
Plugin 'editorconfig/editorconfig-vim'
|
Plugin 'editorconfig/editorconfig-vim'
|
||||||
Plugin 'maxboisvert/vim-simple-complete'
|
Plugin 'maxboisvert/vim-simple-complete'
|
||||||
Plugin 'itchyny/vim-gitbranch'
|
Plugin 'itchyny/vim-gitbranch'
|
||||||
|
Plugin 'tmsvg/pear-tree'
|
||||||
|
|
||||||
" Colorscheme
|
" Colorscheme
|
||||||
Plugin 'joshdick/onedark.vim'
|
Plugin 'joshdick/onedark.vim'
|
||||||
@@ -24,6 +24,7 @@ filetype plugin indent on
|
|||||||
" Plugin Settings
|
" Plugin Settings
|
||||||
" NerdTree
|
" NerdTree
|
||||||
let NERDTreeShowHidden=1
|
let NERDTreeShowHidden=1
|
||||||
|
|
||||||
" Lightline Statusbar
|
" Lightline Statusbar
|
||||||
" absolutepath or filename
|
" absolutepath or filename
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
@@ -37,10 +38,27 @@ let g:lightline = {
|
|||||||
\ 'gitbranch': 'gitbranch#name'
|
\ 'gitbranch': 'gitbranch#name'
|
||||||
\ },
|
\ },
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
" Onedark Colorscheme
|
" Onedark Colorscheme
|
||||||
let g:onedark_hide_endofbuffer=1
|
let g:onedark_hide_endofbuffer=1
|
||||||
let g:onedark_terminal_italics=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
|
" Coloooooors
|
||||||
syntax on
|
syntax on
|
||||||
colorscheme onedark
|
colorscheme onedark
|
||||||
|
|||||||
Reference in New Issue
Block a user