Skip to content
This repository has been archived by the owner on Jun 18, 2022. It is now read-only.

davidklsn/vim-sialoquent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Sialoquent

alt text

Ruby

alt text

Installation

pathogen

cd ~/.vim/bundle
git clone [email protected]:davidklsn/vim-sialoquent.git

Vundle
Add vim-sialoquent to your .vimrc

Plugin 'davidklsn/vim-sialoquent'

Setup in sceenshot

Font

Range Mono (https://pilgrimfonts.com/range-mono/)

set linespace=8
set guifont=Range\ Mono\ Light:h13

Plugins

let g:gitgutter_sign_modified = '•'
let g:gitgutter_sign_added = '❖'
highlight GitGutterAdd guifg = '#A3E28B'
set laststatus=2

let g:lightline = {
  \ 'colorscheme': 'sialoquent',
  \ 'active': {
  \   'left': [ [ 'mode', 'paste' ],
  \             [ 'fugitive', 'readonly', 'filename', 'modified' ] ]
  \ },
  \ 'component': {
  \   'readonly': '%{&filetype=="help"?"":&readonly?"⭤":""}',
  \   'modified': '%{&filetype=="help"?"":&modified?"+":&modifiable?"":"-"}',
  \   'fugitive': '%{exists("*fugitive#head")?fugitive#head():""}'
  \ },
  \ 'component_visible_condition': {
  \   'readonly': '(&filetype!="help"&& &readonly)',
  \   'modified': '(&filetype!="help"&&(&modified||!&modifiable))',
  \   'fugitive': '(exists("*fugitive#head") && ""!=fugitive#head())'
  \ },
  \ 'separator': { 'left': '', 'right': '' },
  \ 'subseparator': { 'left': '∿', 'right': '❂' }
  \ }

If you are using Macvim you can make it even better by adding transparency:

set transparency=4    

Releases

No releases published

Packages