Compare commits

...

5 Commits

3 changed files with 10 additions and 5 deletions

View File

@ -19,6 +19,7 @@ window:
dimensions:
columns: 80
lines: 24
opacity: 1.0
# The FreeType rasterizer needs to know the device DPI for best results
# (changes require restart)
@ -88,10 +89,6 @@ font:
debug:
render_timer: false
# transparent background
#background_opacity: 0.91
background_opacity: 1.0
{% if light %}
# Colors (Gruvbox light)
colors:

View File

@ -32,6 +32,8 @@ Plug 'rust-lang/rust.vim'
Plug 'cespare/vim-toml'
Plug 'dag/vim-fish'
Plug 'rhysd/vim-grammarous'
call plug#end()
set nocompatible
@ -139,6 +141,10 @@ autocmd BufNewFile,BufRead *.ron set syntax=rust
autocmd BufNewFile,BufRead *.lalrpop 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
let g:rustfmt_autosave = 1
let g:rustfmt_emit_files = 1
@ -156,7 +162,7 @@ autocmd FileType fish compiler fish
" Map <leader> to space
let mapleader = " "
" Map to fuzzy file search
" Fuzzy file search
noremap <leader>f :FZF<Enter>
" Clear highlights

View File

@ -0,0 +1,2 @@
# use system clipboard
set selection-clipboard "clipboard"