Compare commits

..
5 Commits
Author SHA1 Message Date
hulthe 015b72cbef nvim: Add word wrapping to .wiki-files 2022-02-03 22:23:19 +01:00
hulthe 1c9c5d6171 nvim: Add grammar plugin 2022-02-03 22:23:02 +01:00
hulthe dc701e86f0 nvim: Use word wrapping for latex files 2022-01-27 14:21:41 +01:00
hulthe 7bb668e180 zathura: Use system clipboard 2022-01-27 14:15:04 +01:00
hulthe 74e761a847 Fix deprecated window opacity option 2022-01-24 15:33:21 +01:00
3 changed files with 10 additions and 5 deletions
+1 -4
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:
+7 -1
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
+2
View File
@@ -0,0 +1,2 @@
# use system clipboard
set selection-clipboard "clipboard"