This commit is contained in:
Marco Thomas
2021-02-11 11:22:35 +01:00
parent 443624bbdf
commit 969dcc5def
3 changed files with 8 additions and 9 deletions

View File

@@ -59,7 +59,7 @@ inherit = bar/main
background = ${colors.clear}
width = 8%
width = 20%
offset-x = 4px
modules-left = i3

View File

@@ -33,5 +33,5 @@ function get_title () {
[ ! -z "$(playerctl -p spotify status 2>/dev/null)" ] \
&& artist=$(get_artist) \
&& title=$(get_title) \
&& ([ -z "$artist$title" ] && scroll "" "Spotify is not connected on this pc" "" || scroll "%{F#79e6f3}$artist%{F#FFF} [" "$title" "]%{F-}" ) \
&& ([ -z "$artist$title" ] && scroll "" "Spotify is not connected on this pc" "" || scroll "$artist - " "$title" "%{F-}" ) \
|| exit 1

View File

@@ -14,17 +14,17 @@ call plug#begin()
Plug 'joshdick/onedark.vim' " color scheme
Plug 'tpope/vim-sleuth' " auto file-specific intendations
Plug 'tpope/vim-sleuth' " heuristic file indendation
Plug 'jiangmiao/auto-pairs' " pair completion
Plug 'airblade/vim-gitgutter' " git
Plug 'airblade/vim-gitgutter' " show git changes
Plug 'itchyny/lightline.vim' " bar
Plug 'mengelbrecht/lightline-bufferline' " bufferline
Plug 'ryanoasis/vim-devicons' " icons in bar
if executable("fzf")
if executable("fzf") " fzf support and bindings
Plug 'junegunn/fzf'
Plug 'junegunn/fzf.vim'
endif
@@ -106,7 +106,6 @@ let g:lightline.component_type = {'buffers': 'tabsel'}
" ============================== Indents and Whitespaces
set list
set listchars=tab:»\ ,extends:,precedes:,nbsp,trail
"set listchars=tab:\┊\ ,extends:,precedes:,nbsp:·,trail:·
set fillchars+=vert:\ "draw verticle split
autocmd FileType perl set tabstop=8 shiftwidth=4 softtabstop=4
@@ -115,9 +114,9 @@ highlight ExtraWhitespace ctermbg=red guibg=red
match ExtraWhitespace /\s\+\%#\@<!$/
" ============================== Search
set incsearch
set ignorecase
set smartcase " case sensitive when capital letters are used
set incsearch " incremental search
set ignorecase " ignore case
set smartcase " -> unless capitol letters
set hlsearch " highlight all results
nnoremap<leader><space> :nohlsearch<CR>