Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidklsn/vim-sialoquent
Colorscheme for vim
https://github.com/davidklsn/vim-sialoquent
colorscheme vim
Last synced: 2 days ago
JSON representation
Colorscheme for vim
- Host: GitHub
- URL: https://github.com/davidklsn/vim-sialoquent
- Owner: davidklsn
- Archived: true
- Created: 2017-01-11T10:35:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-22T09:39:38.000Z (over 7 years ago)
- Last Synced: 2024-08-02T14:12:57.430Z (3 months ago)
- Topics: colorscheme, vim
- Language: Vim script
- Size: 4.98 MB
- Stars: 33
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred-test - davidklsn/vim-sialoquent - Colorscheme for vim (Vim Script)
README
# Sialoquent
![alt text](img/js.png "js")#### Ruby
![alt text](img/ruby.png "Ruby")
### Installation
[`pathogen`](https://github.com/tpope/vim-pathogen)
```
cd ~/.vim/bundle
git clone [email protected]:davidklsn/vim-sialoquent.git
```[`Vundle`](https://github.com/VundleVim/Vundle.vim)
Add vim-sialoquent to your `.vimrc`
```vim
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
##### vim-fugitive (https://github.com/tpope/vim-fugitive)
##### vim-gitgutter (https://github.com/airblade/vim-gitgutter)
let g:gitgutter_sign_modified = '•'
let g:gitgutter_sign_added = '❖'
highlight GitGutterAdd guifg = '#A3E28B'##### lightline.vim (https://github.com/itchyny/lightline.vim)
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