This commit is contained in:
Jeff Lance 2019-11-27 17:06:44 +01:00
parent feb1617a0b
commit e756adc51e
7 changed files with 41 additions and 23 deletions

View File

@ -431,14 +431,14 @@ LOWDISK=y
# will be created for you and the playlist will reference files from that
# subdirectory.
#PLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
PLAYLISTFORMAT='${ARTISTFILE} - ${YEAR} - ${ALBUMFILE}.m3u'
PLAYLISTFORMAT='playlists/${ARTISTFILE} - ${YEAR} - ${ALBUMFILE}.m3u'
# If you want to prefix every filename in a playlist with an arbitrary
# string (such as 'http://you/yourstuff/'), use this option
#PLAYLISTDATAPREFIX=''
#Like PLAYLIST{FORMAT,DATAPREFIX} but for Various Artists discs:
#VAPLAYLISTFORMAT='${ARTISTFILE}-${ALBUMFILE}.${OUTPUT}.m3u'
VAPLAYLISTFORMAT='${ARTISTFILE} - ${YEAR} - ${ALBUMFILE}.m3u'
VAPLAYLISTFORMAT='playlists/${ARTISTFILE} - ${YEAR} - ${ALBUMFILE}.m3u'
#VAPLAYLISTDATAPREFIX=''
#This will give the playlist CR-LF line-endings, if set to "y".

View File

@ -86,7 +86,7 @@ enabled = true
[file]
enabled = false
media_dirs =
/mnt/music|Musique
/mnt/diskstation1/music|Musique
#$XDG_MUSIC_DIR|Home
show_dotfiles = false
follow_symlinks = false

View File

@ -86,9 +86,10 @@ map super+0x63 copy_to_clipboard
#: send an interrupt otherwise.
#map kitty_mod+v paste_from_clipboard
map super+0x76 paste_from_clipboard
map kitty_mod+s paste_from_selection
map shift+insert paste_from_selection
map super+0x76 paste_from_clipboard
map super+0x73 paste_from_selection
#map kitty_mod+s paste_from_selection
# map shift+insert paste_from_selection
map kitty_mod+o pass_selection_to_program
#: You can also pass the contents of the current selection to any
@ -108,15 +109,25 @@ map kitty_mod+o pass_selection_to_program
#: Scrolling {{{
map kitty_mod+up scroll_line_up
map kitty_mod+k scroll_line_up
map kitty_mod+down scroll_line_down
map kitty_mod+j scroll_line_down
map kitty_mod+page_up scroll_page_up
map kitty_mod+page_down scroll_page_down
map kitty_mod+home scroll_home
map kitty_mod+end scroll_end
map kitty_mod+h show_scrollback
#map kitty_mod+up scroll_line_up
#map kitty_mod+k scroll_line_up
#map kitty_mod+down scroll_line_down
#map kitty_mod+j scroll_line_down
#map kitty_mod+page_up scroll_page_up
#map kitty_mod+page_down scroll_page_down
#map kitty_mod+home scroll_home
#map kitty_mod+end scroll_end
#map kitty_mod+h show_scrollback
map shift+up scroll_line_up
map kitty_mod+k scroll_line_up
map shift+down scroll_line_down
map kitty_mod+j scroll_line_down
map shift+page_up scroll_page_up
map shift+page_down scroll_page_down
map shift+home scroll_home
map shift+end scroll_end
map kitty_mod+h show_scrollback
#: You can pipe the contents of the current screen + history buffer as
#: STDIN to an arbitrary program using the ``pipe`` function. For
@ -132,7 +143,8 @@ map kitty_mod+h show_scrollback
#: Window management {{{
map kitty_mod+enter new_window
map super+enter new_window
#map kitty_mod+enter new_window
#: You can open a new window running an arbitrary program, for
#: example::
@ -168,9 +180,13 @@ map kitty_mod+w close_window
#map kitty_mod+[ previous_window
map ctrl+0xff56 next_window
map ctrl+0xff55 previous_window
map kitty_mod+f move_window_forward
map kitty_mod+b move_window_backward
map kitty_mod+` move_window_to_top
#map kitty_mod+f move_window_forward
#map kitty_mod+b move_window_backward
map ctrl+shift+page_down move_window_forward
map ctrl+shift+page_up move_window_backward
#map kitty_mod+` move_window_to_top
map kitty_mod+home move_window_to_top
map kitty_mod+r start_resizing_window
map kitty_mod+1 first_window
map kitty_mod+2 second_window

View File

@ -20,7 +20,8 @@ open_url_modifiers kitty_mod
#: The modifier keys to press when clicking with the mouse on URLs to
#: open the URL
open_url_with default
#open_url_with default
open_url_with qutebrowser
#: The program with which to open URLs that are clicked on. The
#: special value default means to use the operating system's default

View File

@ -1 +1 @@
1.0.49
1.0.55

View File

@ -61,6 +61,7 @@ endif
augroup Kite
autocmd!
autocmd BufEnter * call kite#bufenter()
autocmd VimEnter * call kite#configure_completeopt()
autocmd VimEnter * nested if &filetype !~# '^git' | call kite#onboarding#call(0) | endif
augroup END

View File

@ -34,8 +34,8 @@ alias pbp="pip freeze > pip_installed_$(date +%d%m%yT%H%M%S).txti"
alias scan="clamscan -r $1"
# Edit config of zsh, vim, awesome
alias zshcfg="vim $HOME/.zshrc"
alias zshrld="source $HOME/.zshrc"
alias zshrc="vim $HOME/.zshrc"
alias zsh_reload="source $HOME/.zshrc"
alias vimrc="vim $HOME/.vimrc"
alias awerc="emacs ~dot/awesome/.config/awesome/rc.lua"