diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc index 377b0cd..48a6d02 100755 --- a/bspwm/.config/bspwm/bspwmrc +++ b/bspwm/.config/bspwm/bspwmrc @@ -98,6 +98,8 @@ bspc rule -a Zathura state=tiled bspc rule -a arduino state=pseudo_tiled bspc rule -a Spotify desktop=VII follow=off focus=off bspc rule -a discord desktop=VII follow=off focus=off +bspc rule -a steam_app_2666510 state=pseudo_tiled split_dir=south split_ratio 340 locked private layer=above rectangle=1920x340+0+740 +#bspc rule -a steam_app_2666510 state=pseudo_tiling locked=on private=on split_dir=south split_ratio 296 layer=above rectangle=1920x296+0+784 ## Autogap adjusts windowgap automatically according to the number of ## windows on the desktop. Using it disables negative window gap. diff --git a/git/.gitconfig b/git/.gitconfig index 933c1c3..f4b3690 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -1,6 +1,6 @@ [user] - email = debucquoy.anthony@gmail.com - name = Anthony Debucquoy + email = tonitch@herisson.ovh + name = tonitch signingkey = 3D06B2E67463D272D769DF59A78D6421F083D42E [init] defaultBranch = master @@ -17,3 +17,10 @@ fap = fetch --all --prune [push] autoSetupRemote = true +[sendemail] + smtpServer = mail.herisson.ovh + smtpEncryption = tls + smtpServerPort = 587 + smtpUser = tonitch + smtpPass = bateaux + annotate = yes diff --git a/nvim/.config/nvim/plugin/lsp.lua b/nvim/.config/nvim/plugin/lsp.lua index ba11599..8ebe3d4 100644 --- a/nvim/.config/nvim/plugin/lsp.lua +++ b/nvim/.config/nvim/plugin/lsp.lua @@ -21,4 +21,7 @@ do vim.keymap.set('i', '', function() vim.lsp.buf.signature_help() end, { desc = 'vim.lsp.buf.signature_help()' }) + + vim.keymap.set('n', ']g', vim.diagnostic.goto_next) + vim.keymap.set('n', '[g', vim.diagnostic.goto_prev) end diff --git a/vim/.vim/UltiSnips/make.snippets b/vim/.vim/UltiSnips/make.snippets index 8123136..80c1da2 100644 --- a/vim/.vim/UltiSnips/make.snippets +++ b/vim/.vim/UltiSnips/make.snippets @@ -20,10 +20,14 @@ $0 clean: rm -f *.o rm -f $1 + rm -f tags compile_commands.json bear: clean bear -- make +tags: + ctags **.{c,h} + run: $1 ./$< diff --git a/vim/.vim/ftplugin/go.vim b/vim/.vim/ftplugin/go.vim index 73d6126..19593f6 100644 --- a/vim/.vim/ftplugin/go.vim +++ b/vim/.vim/ftplugin/go.vim @@ -1,3 +1,2 @@ set keywordprg=go\ doc -unmap K set makeprg=go\ run\ .