diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/newsboat/urls | 10 | ||||
| -rw-r--r-- | .config/nvim/init.vim | 8 |
2 files changed, 4 insertions, 14 deletions
diff --git a/.config/newsboat/urls b/.config/newsboat/urls deleted file mode 100644 index 497e494..0000000 --- a/.config/newsboat/urls +++ /dev/null @@ -1,10 +0,0 @@ -https://lukesmith.xyz/rss.xml -https://videos.lukesmith.xyz/feeds/videos.xml?videoChannelId=2 "~Luke Smith (Videos)" -https://www.youtube.com/feeds/videos.xml?channel_id=UC2eYFnH61tmytImy1mTYvhA "~Luke Smith (YouTube)" -https://lindypress.net/rss -https://notrelated.xyz/rss -https://landchad.net/rss.xml -https://based.cooking/index.xml -https://artixlinux.org/feed.php "tech" -https://www.archlinux.org/feeds/news/ "tech" -https://github.com/LukeSmithxyz/voidrice/commits/master.atom "~LARBS dotfiles" diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 8f6d0d7..61deed6 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -31,6 +31,7 @@ set noshowmode set noruler set laststatus=0 set noshowcmd +colorscheme vim " Some basics: nnoremap c "_c @@ -104,10 +105,9 @@ set noshowcmd cabbrev w!! execute 'silent! write !sudo tee % >/dev/null' <bar> edit! " Enable Goyo by default for mutt writing - autocmd BufRead,BufNewFile /tmp/neomutt* let g:goyo_width=80 - autocmd BufRead,BufNewFile /tmp/neomutt* :Goyo | set bg=light - autocmd BufRead,BufNewFile /tmp/neomutt* map ZZ :Goyo\|x!<CR> - autocmd BufRead,BufNewFile /tmp/neomutt* map ZQ :Goyo\|q!<CR> + autocmd BufRead,BufNewFile /tmp/neomutt* :Goyo 80 | call feedkeys("jk") + autocmd BufRead,BufNewFile /tmp/neomutt* map ZZ :Goyo!\|x!<CR> + autocmd BufRead,BufNewFile /tmp/neomutt* map ZQ :Goyo!\|q!<CR> " Automatically deletes all trailing whitespace and newlines at end of file on save. & reset cursor position autocmd BufWritePre * let currPos = getpos(".") |
