Update Dots

This commit is contained in:
Marco Thomas
2020-11-09 18:11:41 +01:00
parent a5849b2dde
commit ac1c15d128
10 changed files with 424 additions and 9 deletions

View File

@@ -75,10 +75,11 @@ bindsym XF86AudioNext exec playerctl next
bindsym XF86AudioPrev exec playerctl previous
# ======================================== Open Applications
bindsym $mod+e exec thunar
mode "Open" {
bindsym c exec google-calendar-dark
bindsym d exec discord; exec Discord
bindsym e exec thunar
bindsym f exec firefox
bindsym m exec thunderbird
bindsym n exec notion-app

View File

@@ -13,7 +13,7 @@ accent-alt = #98c379
monitor = ${env:MONITOR}
font-0 = "Heebo Medium:pixelsize=10;1"
font-1 = "Noto Sans CJK JP:antialiase=false:pixelsize=9;1"
font-1 = "Noto Sans CJK JP:antialiase=false:pixelsize=10;0"
font-2 = "Siji:size=7;1"
font-3 = "Wuncon Siji:size=7;1"

View File

@@ -68,7 +68,7 @@ def truncate(name, trunclen):
# Default parameters
output = fix_string(u'{play_pause} {artist}: {song}')
trunclen = 35
trunclen = 60
play_pause = fix_string(u'\u25B6,\u23F8') # first character is play, second is paused
label_with_font = '%{{T{font}}}{label}%{{T-}}'

View File

@@ -127,7 +127,7 @@ nmap <C-f> :Files<CR>
" ============================== LSP
" ++++++++++ completion-nvim Settings
" ---------- completion-nvim Settings
if has ("nvim")
" Use completion-nvim in every buffer
autocmd BufEnter * lua require'completion'.on_attach()
@@ -160,7 +160,7 @@ if has ("nvim")
set pumheight=10
endif
" ++++++++++ lsp Settings
" ---------- lsp Settings
if has ("nvim")
" Show definition
nnoremap <silent> gd <cmd>lua vim.lsp.buf.definition()<CR>
@@ -169,14 +169,14 @@ if has ("nvim")
nnoremap <silent> K <cmd>lua vim.lsp.buf.hover()<CR>
endif
" ++++++++++ neosnippet Settings
" ---------- neosnippet Settings
if has ("nvim")
imap <C-k> <Plug>(neosnippet_expand_or_jump)
smap <C-k> <Plug>(neosnippet_expand_or_jump)
xmap <C-k> <Plug>(neosnippet_expand_target)
endif
" ++++++++++ Enable Language Servers
" ---------- Enable Language Servers
if has ("nvim")
if executable("pyls")
lua << EOF