calendar mngmt
This commit is contained in:
parent
60f5a58a03
commit
b96849a477
5 changed files with 30 additions and 7 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -219,3 +219,7 @@ pcmanfm-qt/
|
|||
cni/
|
||||
btop/
|
||||
gtk-2.0/
|
||||
calcurse/keys
|
||||
khard/
|
||||
msmtp/
|
||||
mutt/
|
||||
|
|
13
calcurse/caldav/config
Normal file
13
calcurse/caldav/config
Normal file
|
@ -0,0 +1,13 @@
|
|||
[General]
|
||||
Binary = calcurse
|
||||
Hostname = cloud.tavo.one
|
||||
Path = /remote.php/dav/calendars/tavo@tavo.one/default/
|
||||
AuthMethod = basic
|
||||
InsecureSSL = No
|
||||
HTTPS = Yes
|
||||
SyncFilter = event,apt,recur-event,recur-apt,todo,recur,cal
|
||||
DryRun = No
|
||||
Verbose = Yes
|
||||
|
||||
[Auth]
|
||||
Username = tavo@tavo.one
|
5
calcurse/conf
Normal file
5
calcurse/conf
Normal file
|
@ -0,0 +1,5 @@
|
|||
appearance.defaultpanel=todo
|
||||
appearance.layout=5
|
||||
appearance.theme=cyan on default
|
||||
appearance.todoview=show-completed
|
||||
general.firstdayofweek=sunday
|
|
@ -121,6 +121,7 @@ Plug 'junegunn/goyo.vim'
|
|||
Plug 'mhinz/vim-signify'
|
||||
Plug 'ibhagwan/fzf-lua'
|
||||
Plug 'morhetz/gruvbox'
|
||||
Plug 'instant-markdown/vim-instant-markdown'
|
||||
"Plug 'dracula/vim'
|
||||
call plug#end()
|
||||
|
||||
|
@ -169,3 +170,10 @@ noremap gd :SignifyToggle<CR>
|
|||
|
||||
" Vimwiki
|
||||
let g:vimwiki_list = [{'path': '~/Documents/', 'path_html': '~/.local/share/vimwiki/html/'}]
|
||||
|
||||
" Instant Markdown
|
||||
let g:instant_markdown_autostart = 0
|
||||
autocmd FileType markdown noremap <buffer> <silent> <F9> :InstantMarkdownPreview<CR>
|
||||
let g:instant_markdown_browser = "firefox --new-window"
|
||||
let g:instant_markdown_mathjax = 1
|
||||
let g:instant_markdown_mermaid = 1
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/sh
|
||||
# Open 'surf' browser with tabbed
|
||||
|
||||
HOME=$HOME/.local/share/surf
|
||||
mkdir -p "$HOME"
|
||||
|
||||
exec tabbed -c /usr/bin/surf -e "$@" || exec tabbed -c /usr/local/bin/surf -e "$@"
|
Loading…
Reference in a new issue