diff --git a/home/.config/ncmpcpp/config b/home/.config/ncmpcpp/config index aa71163..c6b5ccd 100644 --- a/home/.config/ncmpcpp/config +++ b/home/.config/ncmpcpp/config @@ -2,10 +2,10 @@ ncmpcpp_directory = ~/.ncmpcpp lyrics_directory = ~/.lyrics ##### MPD settings ##### -mpd_host = {{@@ env['PASS_MPD'] @@}}@localhost +mpd_host = {{@@ env['PASS_MPD_ADMIN'] @@}}@localhost mpd_port = 6600 mpd_connection_timeout = 5 -mpd_music_dir = ~/Mussic +mpd_music_dir = ~/Music mpd_crossfade_time = 2 ##### visualizer ##### @@ -14,7 +14,7 @@ visualizer_output_name = Visualizer visualizer_in_stereo = yes visualizer_sync_interval = 30 # spectrum,wave,wave_filled,ellipse. -visualizer_type = wave +visualizer_type = wave_filled visualizer_look = ●▮ visualizer_color = 41, 83, 119, 155, 185, 215, 209, 203, 197, 161 @@ -23,7 +23,7 @@ visualizer_color = 41, 83, 119, 155, 185, 215, 209, 203, 197, 161 ## (0 = always on). playlist_disable_highlight_delay = 5 message_delay_time = 5 -# + ##### song format ##### # %l - length # %f - filename @@ -45,22 +45,22 @@ message_delay_time = 5 song_list_format = {%a - }{%t}|{$8%f$9}$R{$3(%l)$9} song_status_format = {{%a{ "%b"{ (%y)}} - }{%t}}|{%f} -#song_library_format = {%n - }{%t}|{%f} -#alternative_header_first_line_format = $b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b -#alternative_header_second_line_format = {{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D} -#current_item_prefix = $(yellow)$r -#current_item_suffix = $/r$(end) -#current_item_inactive_column_prefix = $(white)$r -#current_item_inactive_column_suffix = $/r$(end) -#now_playing_prefix = $b -#now_playing_suffix = $/b -#browser_playlist_prefix = "$2playlist$9 " -#selected_item_prefix = $6 -#selected_item_suffix = $9 -#modified_item_prefix = $3> $9 +song_library_format = {%n - }{%t}|{%f} +alternative_header_first_line_format = $b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b +alternative_header_second_line_format = {{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D} +current_item_prefix = $(yellow)$r +current_item_suffix = $/r$(end) +current_item_inactive_column_prefix = $(white)$r +current_item_inactive_column_suffix = $/r$(end) +now_playing_prefix = $b +now_playing_suffix = $/b +browser_playlist_prefix = "$2playlist$9 " +selected_item_prefix = $6 +selected_item_suffix = $9 +modified_item_prefix = $3> $9 song_window_title_format = {%a - }{%t}|{%f} -#browser_sort_mode = name -#browser_sort_format = {%a - }{%t}|{%f} {(%l)} +browser_sort_mode = name +browser_sort_format = {%a - }{%t}|{%f} {(%l)} ##### columns ##### song_columns_list_format = (20)[]{a} (6f)[green]{NE} (50)[white]{t|f:Title} (20)[cyan]{b} (7f)[magenta]{l} @@ -87,7 +87,7 @@ progressbar_look = => default_place_to_search_in = database user_interface = alternative data_fetching_delay = yes -media_library_primary_tag = artist +media_library_primary_tag = album_artist media_library_albums_split_by_date = yes default_find_mode = wrapped default_tag_editor_pattern = %n - %t @@ -126,7 +126,7 @@ external_editor = nvim use_console_editor = yes ##### lyrics ##### -lyrics_fetchers = embedded +#lyrics_fetchers = embedded follow_now_playing_lyrics = yes fetch_lyrics_for_current_song_in_background = no store_lyrics_in_song_dir = no @@ -140,7 +140,7 @@ show_hidden_files_in_local_browser = no ##### colors ##### colors_enabled = yes empty_tag_color = cyan -header_window_color = default +header_window_color = red volume_color = default state_line_color = default state_flags_color = default:b diff --git a/home/.config/nvim/conf.d/01-plugins.vim b/home/.config/nvim/conf.d/01-plugins.vim index 4594945..ccf458e 100644 --- a/home/.config/nvim/conf.d/01-plugins.vim +++ b/home/.config/nvim/conf.d/01-plugins.vim @@ -11,7 +11,6 @@ let g:coc_global_extensions = [ \ 'coc-tsserver', \ 'coc-json', \ 'coc-yaml', - \ 'coc-highlight', \ 'coc-vimtex', \ 'coc-prettier', \ 'coc-python', @@ -24,6 +23,9 @@ call plug#begin() " Make editing passwords safer Plug 'https://git.zx2c4.com/password-store', { 'rtp': 'contrib/vim/redact_pass.vim' } +" Colorize color words +Plug 'norcalli/nvim-colorizer.lua' + " Spelling Plug 'vim-scripts/Vimchant'