diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-04-07 16:29:34 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-04-07 16:29:34 +0100 |
commit | 237743798fc6edf1f9a0952c7f83f08bbc155260 (patch) | |
tree | ab880c88a346a59a54f3234e416ed4eb6feeadf2 | |
parent | de3e39863c2d94351a908ba6223e7901c837057c (diff) |
changed
-rw-r--r-- | newsboat/config | 2 | ||||
-rw-r--r-- | qutebrowser/config.py | 4 | ||||
-rw-r--r-- | taskrc | 8 | ||||
-rw-r--r-- | vim/vimrc | 13 |
4 files changed, 19 insertions, 8 deletions
diff --git a/newsboat/config b/newsboat/config index 7418629..112e1c5 100644 --- a/newsboat/config +++ b/newsboat/config @@ -60,7 +60,7 @@ notify-program "notify-send" notify-screen yes notify-xterm yes -max-items 20 +#max-items 20 download-path "~/Downloads" player mpv diff --git a/qutebrowser/config.py b/qutebrowser/config.py index 55eac39..4684b14 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -1489,8 +1489,8 @@ c.tabs.close_mouse_button = 'middle' ## used by prepending the search engine name to the search term, e.g. ## `:open google qutebrowser`. ## Type: Dict -c.url.searchengines = {'DEFAULT': 'https://www.google.co.uk/?q={}'} -#c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}'} +#c.url.searchengines = {'DEFAULT': 'https://www.google.co.uk/?q={}'} +c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}'} c.url.searchengines.update({'ddg': 'https://duckduckgo.com/?q={}'}) c.url.searchengines.update({'g': 'https://www.google.co.uk/?q={}'}) c.url.searchengines.update({'deb': 'https://packages.debian.org/search?keywords={}'}) @@ -42,8 +42,9 @@ weekstart=Monday #include /usr/share/taskwarrior/dark-gray-blue-256.theme #include /usr/share/taskwarrior/solarized-dark-256.theme #include /usr/share/taskwarrior/solarized-light-256.theme -#include /usr/share/taskwarrior/no-color.theme -include /home/lemon/.task/solarized-16.theme +#include /usr/local/share/doc/taskwarrior/rc/no-color.theme +include /usr/local/share/doc/taskwarrior/rc/solarized-light-256.theme +#include /home/lemon/.task/solarized-16.theme #include /home/lemon/.task/solarized-dark-256.theme # # colour @@ -54,7 +55,7 @@ color.calendar.due.today=on red color.calendar.overdue=bold red color.calendar.today=blue color.calendar.due=cyan -color.blocked=underline grey10 on grey3 +#color.blocked=underline grey10 on grey3 color.blocking=color5 color.due= color.tagged= @@ -146,6 +147,7 @@ holiday.en-GB9.name=New Year's Day holiday.en-GB9.date=20200101 # next report ("task") +#default.command=ls limit:page # Don't ask for confirmation confirmation=no @@ -65,7 +65,11 @@ set sidescroll=1 set sidescrolloff=10 set virtualedit+=block nnoremap <leader><space> :noh<cr>:call clearmatches()<cr> - + +" calcurse +" markdown notes from https://www.youtube.com/watch?v=I_-MqgpEWFA +autocmd BufRead,BufNewFile /tmp/calcurse*,~/.calcurse/notes/* set filetype=markdown + " open a Quickfix window for the last search nnoremap <silent> <leader>/ :execute 'vimgrep /'.@/.'/g %'<CR>:copen<CR> @@ -73,6 +77,11 @@ nnoremap <silent> <leader>/ :execute 'vimgrep /'.@/.'/g %'<CR>:copen<CR> call plug#begin('~/.vim/plugged') Plug 'fatih/vim-go', { 'tag': '*' } Plug 'altercation/vim-colors-solarized' +Plug 'vimwiki/vimwiki' +Plug 'tools-life/taskwiki' +Plug 'powerman/vim-plugin-AnsiEsc' +Plug 'farseer90718/vim-taskwarrior' +Plug 'majutsushi/tagbar' call plug#end() " colorscheme @@ -128,7 +137,7 @@ autocmd FileType python set sts=4 autocmd FileType python set omnifunc=pythoncomplete#Complete autocmd FileType html set omnifunc=htmlcomplete#Complete -syntax off +syntax on filetype indent on filetype plugin on |