From 8a6b32a6b1bf45f1d9326e1a1f3124e902c2175d Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Thu, 10 Feb 2022 14:00:32 +0100 Subject: [PATCH 01/16] [nvim] Set up PHP extensions for coc --- nvim/coc-languages/php.vim | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 nvim/coc-languages/php.vim diff --git a/nvim/coc-languages/php.vim b/nvim/coc-languages/php.vim new file mode 100644 index 0000000..ad91d65 --- /dev/null +++ b/nvim/coc-languages/php.vim @@ -0,0 +1,2 @@ +call extend(g:dotfiles_coc_extensions, {'coc-phpls': 1, 'coc-blade': 1, 'coc-tighten-lint': 1}) +call extend(g:dotfiles_coc_filetypes, {'php': 1, 'blade': 1}) From 3de19fbfccb37770006b2bc50387ba3efb3c9f2b Mon Sep 17 00:00:00 2001 From: GitHub Date: Fri, 11 Feb 2022 00:34:04 +0000 Subject: [PATCH 02/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index a4b6e5e..9e6941e 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit a4b6e5ec326838ac60ce221d166d4059ba4a5692 +Subproject commit 9e6941eeb7728f0ceadffb501f473a08837098ac From 64ca81d154d6706feb362175e7c711cbb6755b70 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Mon, 14 Feb 2022 23:20:46 +0100 Subject: [PATCH 03/16] [nvim] Add some LISP plugins --- nvim/coc-languages/lisp.vim | 2 ++ nvim/dotfiles/plugins-list.vim | 2 ++ nvim/ftdetect/dotfiles.vim | 1 + 3 files changed, 5 insertions(+) create mode 100644 nvim/coc-languages/lisp.vim diff --git a/nvim/coc-languages/lisp.vim b/nvim/coc-languages/lisp.vim new file mode 100644 index 0000000..919a2eb --- /dev/null +++ b/nvim/coc-languages/lisp.vim @@ -0,0 +1,2 @@ +call extend(g:dotfiles_coc_extensions, {'coc-cl': 1}) +call extend(g:dotfiles_coc_filetypes, {'lsp': 1}) diff --git a/nvim/dotfiles/plugins-list.vim b/nvim/dotfiles/plugins-list.vim index 6c1772a..6879df1 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -23,6 +23,8 @@ let s:plug = funcref('dotfiles#plugman#register') call s:plug('stevearc/vim-arduino') call s:plug('xiyaowong/coc-nvim-lua') call s:plug('luke-gru/vim-riml') + call s:plug('bhurlow/vim-parinfer') + call s:plug('vim-scripts/newlisp') if has('unix') call s:plug('nvim-neorg/neorg', { 'branch': 'unstable' }) " dependencies {{{ call s:plug('nvim-treesitter/nvim-treesitter', { 'do': ':TSUpdate' }) diff --git a/nvim/ftdetect/dotfiles.vim b/nvim/ftdetect/dotfiles.vim index ff733e1..c120a2d 100644 --- a/nvim/ftdetect/dotfiles.vim +++ b/nvim/ftdetect/dotfiles.vim @@ -6,4 +6,5 @@ augroup dotfilesftdetect autocmd BufWritePost PKGBUILD :call s:genSrcInfo() autocmd BufNewFile,BufRead *.dream setf dream + autocmd BufNewFile,BufRead *.newlisp setf newlisp augroup END From 296d65e3194dfc5795b1b451bd1915dd21bf9843 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Sat, 5 Mar 2022 11:30:00 +0000 Subject: [PATCH 04/16] [tmux] Fixup some of the config --- tmux/tmux.conf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index c03e459..0789061 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -1,6 +1,14 @@ -set -g default-terminal 'screen-256color' +# Enable 256color and RGB support (because tmux loves ruining shell features) +set -g default-terminal "tmux-256color" +set-option -ga terminal-overrides ",xterm-256color:Tc" +set -as terminal-features ",gnome*:RGB" + +# Enable mouse supports for those rare times I have to select something set -g mouse on +# Prevent tmux from deleting significant amounts of history +set -g history-limit 100000 + run 'if [ -d "~/.tmux/plugins/tpm" ]; then : ; else git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm; fi' set -g @tpm_plugins ' \ From 9e2eab6e0cd109b9b3f80c466d36dee0bc37a2e5 Mon Sep 17 00:00:00 2001 From: GitHub Date: Sat, 5 Mar 2022 11:32:52 +0000 Subject: [PATCH 05/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 9e6941e..61c44f3 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 9e6941eeb7728f0ceadffb501f473a08837098ac +Subproject commit 61c44f34f7dc878f6bb0c71a6c89d26bdedf3369 From dcb08779eac53ae3af923957cc84ca9f893b5ee9 Mon Sep 17 00:00:00 2001 From: GitHub Date: Mon, 7 Mar 2022 00:36:52 +0000 Subject: [PATCH 06/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 61c44f3..6a2605b 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 61c44f34f7dc878f6bb0c71a6c89d26bdedf3369 +Subproject commit 6a2605b8ba790d74b0219ec192af7aaf8b52824d From 67f297f77b7687a098dad69dff95d7059961b3a3 Mon Sep 17 00:00:00 2001 From: GitHub Date: Fri, 11 Mar 2022 00:39:55 +0000 Subject: [PATCH 07/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 6a2605b..73df16a 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 6a2605b8ba790d74b0219ec192af7aaf8b52824d +Subproject commit 73df16a9f3a2fb88023d6ea4f436213e6c4ea417 From a138dcc6404da7bd7eb95f2a9af0b23b440cbb49 Mon Sep 17 00:00:00 2001 From: GitHub Date: Sun, 13 Mar 2022 00:36:08 +0000 Subject: [PATCH 08/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 73df16a..d792336 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 73df16a9f3a2fb88023d6ea4f436213e6c4ea417 +Subproject commit d792336f7ac9737cc68a2383e52bed69932851ae From 1286d508fbf840a158fbabfc376d8400e8f42702 Mon Sep 17 00:00:00 2001 From: GitHub Date: Tue, 15 Mar 2022 00:42:56 +0000 Subject: [PATCH 09/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index d792336..fe04153 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit d792336f7ac9737cc68a2383e52bed69932851ae +Subproject commit fe041534b0063a0fc25c32d80895a1c468b85935 From ae0d28b8510f25e40b7f5c0e12934bdd02195905 Mon Sep 17 00:00:00 2001 From: GitHub Date: Wed, 16 Mar 2022 00:39:12 +0000 Subject: [PATCH 10/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index fe04153..1c2684b 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit fe041534b0063a0fc25c32d80895a1c468b85935 +Subproject commit 1c2684bed65a56edda4908bbbf07f8721664a8d4 From 6e946c6c6d2c49a463ffcea54dd0d4b63c840e66 Mon Sep 17 00:00:00 2001 From: GitHub Date: Thu, 17 Mar 2022 00:39:07 +0000 Subject: [PATCH 11/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 1c2684b..d1adefd 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 1c2684bed65a56edda4908bbbf07f8721664a8d4 +Subproject commit d1adefd857d68d01dc77d8c0274b3b50aa0f7fa5 From 4484a842da0d85a3f1f31a718d9a4422b01e5d6c Mon Sep 17 00:00:00 2001 From: GitHub Date: Sun, 20 Mar 2022 00:38:00 +0000 Subject: [PATCH 12/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index d1adefd..1cb24d5 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit d1adefd857d68d01dc77d8c0274b3b50aa0f7fa5 +Subproject commit 1cb24d570db48b934cccccd3679c68107b854a94 From 09a43723a415201deeb3ef43e4d601b8b591d525 Mon Sep 17 00:00:00 2001 From: GitHub Date: Mon, 21 Mar 2022 00:37:10 +0000 Subject: [PATCH 13/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 1cb24d5..3d842db 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 1cb24d570db48b934cccccd3679c68107b854a94 +Subproject commit 3d842dbb19597bf48d5d7723db510706d36472a4 From b7d0c56360adcd4d1f2e6b4b7b2a7657b6d0e6f4 Mon Sep 17 00:00:00 2001 From: GitHub Date: Tue, 22 Mar 2022 00:38:43 +0000 Subject: [PATCH 14/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 3d842db..46410c0 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 3d842dbb19597bf48d5d7723db510706d36472a4 +Subproject commit 46410c06bccd88a231e571a6c980504150b25f34 From 3c6898f5f4bad77b5b1ae800267881d382673c2a Mon Sep 17 00:00:00 2001 From: GitHub Date: Wed, 23 Mar 2022 00:43:46 +0000 Subject: [PATCH 15/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 46410c0..5fdfb77 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 46410c06bccd88a231e571a6c980504150b25f34 +Subproject commit 5fdfb772dba6dabb759102ba27e60077b4112e03 From 91e3b15511d9a883a40d7dcf0c6737a0a48d4bee Mon Sep 17 00:00:00 2001 From: GitHub Date: Thu, 24 Mar 2022 00:40:50 +0000 Subject: [PATCH 16/16] [dmitmel] Update submodule --- dmitmel-dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmitmel-dotfiles b/dmitmel-dotfiles index 5fdfb77..8a72acf 160000 --- a/dmitmel-dotfiles +++ b/dmitmel-dotfiles @@ -1 +1 @@ -Subproject commit 5fdfb772dba6dabb759102ba27e60077b4112e03 +Subproject commit 8a72acffb103853fbff84e2ad088c866a98552b3