├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── assets └── spell │ ├── 10k.txt │ ├── de.utf-8.add │ ├── de.utf-8.add.spl │ ├── de.utf-8.spl │ ├── en.utf-8.add │ ├── en.utf-8.add.spl │ ├── en.utf-8.sug │ └── mthesaur.txt ├── ftplugin ├── r.py └── roo.md ├── setup ├── astro │ ├── .luarc.json │ ├── .stylua.toml │ ├── README.md │ ├── after │ │ ├── ftplugin │ │ │ └── markdown.vim │ │ └── syntax │ │ │ └── markdown.vim │ ├── cmp │ │ └── source_priority.lua │ ├── environ │ ├── ftplugin │ │ ├── css.vim │ │ ├── defx.vim │ │ ├── diagnosticpopup.vim │ │ ├── gitcommit.vim │ │ ├── go.vim │ │ ├── help.vim │ │ ├── javascript.vim │ │ ├── lua.vim │ │ ├── man.vim │ │ ├── markdown.vim │ │ ├── python.vim │ │ ├── qf.vim │ │ ├── scss.vim │ │ ├── sh.vim │ │ ├── text.vim │ │ ├── typescript.vim │ │ ├── typescriptreact.vim │ │ └── yaml.vim │ ├── header.lua │ ├── init.lua │ ├── lsp │ │ ├── formatting.lua │ │ ├── mappings.lua │ │ ├── on_attach.lua │ │ ├── server-settings │ │ │ ├── clangd.lua │ │ │ ├── gopls.lua │ │ │ ├── pylsp.lua │ │ │ ├── sqls.lua │ │ │ ├── sumneko_lua.lua │ │ │ ├── tsserver.lua │ │ │ └── yamlls.lua │ │ └── skip_setup.lua │ ├── mappings.lua │ ├── mappings.md │ ├── mason-nvim-dap.dis │ │ ├── r.py │ │ └── setup_handlers.lua │ ├── options.lua │ ├── plugins │ │ ├── cmp.lua.dis │ │ ├── init.lua │ │ ├── mason-null-ls.lua.dis │ │ ├── nvim-lastplace.lua │ │ ├── telescope.lua │ │ └── typescript.lua │ ├── polish.vim │ ├── profiler.vim │ ├── snippets │ │ ├── markdown.snippets │ │ └── python.snippets │ ├── utils.lua │ └── versions ├── pds.sh ├── tmux.conf ├── tools.sh └── versions_mamba.txt └── test ├── test-core-tmux.sh ├── test-pds-funcs.sh ├── test-pds-script.sh ├── test-plugin-vpe-do-gen.sh ├── test-user-1-tmux.sh └── tools.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/* 3 | 4 | tmux-keylogger/ 5 | Mambaforge-Linux-x86_64.sh 6 | 7 | *.swp 8 | 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/README.md -------------------------------------------------------------------------------- /assets/spell/10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/assets/spell/10k.txt -------------------------------------------------------------------------------- /assets/spell/de.utf-8.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/assets/spell/de.utf-8.add -------------------------------------------------------------------------------- /assets/spell/de.utf-8.add.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/assets/spell/de.utf-8.add.spl -------------------------------------------------------------------------------- /assets/spell/de.utf-8.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/assets/spell/de.utf-8.spl -------------------------------------------------------------------------------- /assets/spell/en.utf-8.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/assets/spell/en.utf-8.add -------------------------------------------------------------------------------- /assets/spell/en.utf-8.add.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/assets/spell/en.utf-8.add.spl -------------------------------------------------------------------------------- /assets/spell/en.utf-8.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/assets/spell/en.utf-8.sug -------------------------------------------------------------------------------- /assets/spell/mthesaur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/assets/spell/mthesaur.txt -------------------------------------------------------------------------------- /ftplugin/r.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ftplugin/roo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/ftplugin/roo.md -------------------------------------------------------------------------------- /setup/astro/.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/.luarc.json -------------------------------------------------------------------------------- /setup/astro/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/.stylua.toml -------------------------------------------------------------------------------- /setup/astro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/README.md -------------------------------------------------------------------------------- /setup/astro/after/ftplugin/markdown.vim: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /setup/astro/after/syntax/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/after/syntax/markdown.vim -------------------------------------------------------------------------------- /setup/astro/cmp/source_priority.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/cmp/source_priority.lua -------------------------------------------------------------------------------- /setup/astro/environ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/environ -------------------------------------------------------------------------------- /setup/astro/ftplugin/css.vim: -------------------------------------------------------------------------------- 1 | setlocal iskeyword=@,48-57,_,-,?,!,192-255 2 | 3 | -------------------------------------------------------------------------------- /setup/astro/ftplugin/defx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/defx.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/diagnosticpopup.vim: -------------------------------------------------------------------------------- 1 | 2 | setlocal showbreak=\ \ 3 | -------------------------------------------------------------------------------- /setup/astro/ftplugin/gitcommit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/gitcommit.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/go.vim: -------------------------------------------------------------------------------- 1 | setlocal noexpandtab 2 | -------------------------------------------------------------------------------- /setup/astro/ftplugin/help.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/help.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/javascript.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/lua.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/lua.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/man.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/man.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/markdown.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/python.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/qf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/qf.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/scss.vim: -------------------------------------------------------------------------------- 1 | setlocal iskeyword=@,48-57,_,-,?,!,192-255,$ 2 | 3 | -------------------------------------------------------------------------------- /setup/astro/ftplugin/sh.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/sh.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/text.vim: -------------------------------------------------------------------------------- 1 | setlocal textwidth=120 2 | 3 | -------------------------------------------------------------------------------- /setup/astro/ftplugin/typescript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/typescript.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/typescriptreact.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/typescriptreact.vim -------------------------------------------------------------------------------- /setup/astro/ftplugin/yaml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/ftplugin/yaml.vim -------------------------------------------------------------------------------- /setup/astro/header.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/header.lua -------------------------------------------------------------------------------- /setup/astro/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/init.lua -------------------------------------------------------------------------------- /setup/astro/lsp/formatting.lua: -------------------------------------------------------------------------------- 1 | return { 2 | disabled = { 'sumneko_lua' }, 3 | } 4 | -------------------------------------------------------------------------------- /setup/astro/lsp/mappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/mappings.lua -------------------------------------------------------------------------------- /setup/astro/lsp/on_attach.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/on_attach.lua -------------------------------------------------------------------------------- /setup/astro/lsp/server-settings/clangd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/server-settings/clangd.lua -------------------------------------------------------------------------------- /setup/astro/lsp/server-settings/gopls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/server-settings/gopls.lua -------------------------------------------------------------------------------- /setup/astro/lsp/server-settings/pylsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/server-settings/pylsp.lua -------------------------------------------------------------------------------- /setup/astro/lsp/server-settings/sqls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/server-settings/sqls.lua -------------------------------------------------------------------------------- /setup/astro/lsp/server-settings/sumneko_lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/server-settings/sumneko_lua.lua -------------------------------------------------------------------------------- /setup/astro/lsp/server-settings/tsserver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/server-settings/tsserver.lua -------------------------------------------------------------------------------- /setup/astro/lsp/server-settings/yamlls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/server-settings/yamlls.lua -------------------------------------------------------------------------------- /setup/astro/lsp/skip_setup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/lsp/skip_setup.lua -------------------------------------------------------------------------------- /setup/astro/mappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/mappings.lua -------------------------------------------------------------------------------- /setup/astro/mappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/mappings.md -------------------------------------------------------------------------------- /setup/astro/mason-nvim-dap.dis/r.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/astro/mason-nvim-dap.dis/setup_handlers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/mason-nvim-dap.dis/setup_handlers.lua -------------------------------------------------------------------------------- /setup/astro/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/options.lua -------------------------------------------------------------------------------- /setup/astro/plugins/cmp.lua.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/plugins/cmp.lua.dis -------------------------------------------------------------------------------- /setup/astro/plugins/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/plugins/init.lua -------------------------------------------------------------------------------- /setup/astro/plugins/mason-null-ls.lua.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/plugins/mason-null-ls.lua.dis -------------------------------------------------------------------------------- /setup/astro/plugins/nvim-lastplace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/plugins/nvim-lastplace.lua -------------------------------------------------------------------------------- /setup/astro/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/plugins/telescope.lua -------------------------------------------------------------------------------- /setup/astro/plugins/typescript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/plugins/typescript.lua -------------------------------------------------------------------------------- /setup/astro/polish.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/polish.vim -------------------------------------------------------------------------------- /setup/astro/profiler.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/profiler.vim -------------------------------------------------------------------------------- /setup/astro/snippets/markdown.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/snippets/markdown.snippets -------------------------------------------------------------------------------- /setup/astro/snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/snippets/python.snippets -------------------------------------------------------------------------------- /setup/astro/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/utils.lua -------------------------------------------------------------------------------- /setup/astro/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/astro/versions -------------------------------------------------------------------------------- /setup/pds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/pds.sh -------------------------------------------------------------------------------- /setup/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/tmux.conf -------------------------------------------------------------------------------- /setup/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/tools.sh -------------------------------------------------------------------------------- /setup/versions_mamba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/setup/versions_mamba.txt -------------------------------------------------------------------------------- /test/test-core-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/test/test-core-tmux.sh -------------------------------------------------------------------------------- /test/test-pds-funcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/test/test-pds-funcs.sh -------------------------------------------------------------------------------- /test/test-pds-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/test/test-pds-script.sh -------------------------------------------------------------------------------- /test/test-plugin-vpe-do-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/test/test-plugin-vpe-do-gen.sh -------------------------------------------------------------------------------- /test/test-user-1-tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/test/test-user-1-tmux.sh -------------------------------------------------------------------------------- /test/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axgkl/pds/HEAD/test/tools.sh --------------------------------------------------------------------------------