Compare commits
5 Commits
ad92b68c1e
...
015b72cbef
| Author | SHA1 | Date | |
|---|---|---|---|
|
015b72cbef
|
|||
|
1c9c5d6171
|
|||
|
dc701e86f0
|
|||
|
7bb668e180
|
|||
|
74e761a847
|
@ -19,6 +19,7 @@ window:
|
|||||||
dimensions:
|
dimensions:
|
||||||
columns: 80
|
columns: 80
|
||||||
lines: 24
|
lines: 24
|
||||||
|
opacity: 1.0
|
||||||
|
|
||||||
# The FreeType rasterizer needs to know the device DPI for best results
|
# The FreeType rasterizer needs to know the device DPI for best results
|
||||||
# (changes require restart)
|
# (changes require restart)
|
||||||
@ -88,10 +89,6 @@ font:
|
|||||||
debug:
|
debug:
|
||||||
render_timer: false
|
render_timer: false
|
||||||
|
|
||||||
# transparent background
|
|
||||||
#background_opacity: 0.91
|
|
||||||
background_opacity: 1.0
|
|
||||||
|
|
||||||
{% if light %}
|
{% if light %}
|
||||||
# Colors (Gruvbox light)
|
# Colors (Gruvbox light)
|
||||||
colors:
|
colors:
|
||||||
|
|||||||
@ -32,6 +32,8 @@ Plug 'rust-lang/rust.vim'
|
|||||||
Plug 'cespare/vim-toml'
|
Plug 'cespare/vim-toml'
|
||||||
Plug 'dag/vim-fish'
|
Plug 'dag/vim-fish'
|
||||||
|
|
||||||
|
Plug 'rhysd/vim-grammarous'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
set nocompatible
|
set nocompatible
|
||||||
@ -139,6 +141,10 @@ autocmd BufNewFile,BufRead *.ron set syntax=rust
|
|||||||
autocmd BufNewFile,BufRead *.lalrpop set syntax=rust
|
autocmd BufNewFile,BufRead *.lalrpop set syntax=rust
|
||||||
autocmd BufNewFile,BufRead *.pest set syntax=rust
|
autocmd BufNewFile,BufRead *.pest set syntax=rust
|
||||||
|
|
||||||
|
" Word-wrapping for relevant files
|
||||||
|
autocmd BufNewFile,BufRead *.tex set linebreak
|
||||||
|
autocmd BufNewFile,BufRead *.wiki set linebreak
|
||||||
|
|
||||||
" rust-stuff
|
" rust-stuff
|
||||||
let g:rustfmt_autosave = 1
|
let g:rustfmt_autosave = 1
|
||||||
let g:rustfmt_emit_files = 1
|
let g:rustfmt_emit_files = 1
|
||||||
@ -156,7 +162,7 @@ autocmd FileType fish compiler fish
|
|||||||
" Map <leader> to space
|
" Map <leader> to space
|
||||||
let mapleader = " "
|
let mapleader = " "
|
||||||
|
|
||||||
" Map to fuzzy file search
|
" Fuzzy file search
|
||||||
noremap <leader>f :FZF<Enter>
|
noremap <leader>f :FZF<Enter>
|
||||||
|
|
||||||
" Clear highlights
|
" Clear highlights
|
||||||
|
|||||||
2
tree/.config/zathura/zathurarc
Normal file
2
tree/.config/zathura/zathurarc
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# use system clipboard
|
||||||
|
set selection-clipboard "clipboard"
|
||||||
Reference in New Issue
Block a user