Latest
This commit is contained in:
parent
e0caf12258
commit
5521760e57
5 changed files with 100 additions and 24 deletions
|
@ -1,8 +1,12 @@
|
|||
# TODOs
|
||||
|
||||
* Port over installations handled by Taskfile.yml
|
||||
https://github.com/search?q=vscode&type=repositories&s=stars&o=desc&p=2
|
||||
* COC Extensions
|
||||
* Revisit https://github.com/rome/tools when project matures
|
||||
https://github.com/rigoneri/syte/graphs/code-frequency
|
||||
https://www.automated-bots.com/
|
||||
https://github.com/NathanDuma/LinkedIn-Easy-Apply-Bot
|
||||
https://github.com/hfreire/get-me-a-date
|
||||
https://github.com/joelbarmettlerUZH/auto-tinder
|
||||
|
||||
## Pending
|
||||
|
||||
|
|
|
@ -55,6 +55,7 @@ chromeExtensions:
|
|||
- floccus-bookmarks-sync/fnaicdffflnofjppbagibeoednhnbjhg
|
||||
- giphy-for-chrome/jlleokkdhkflpmghiioglgmnminbekdi
|
||||
- jiffy-reader/lljedihjnnjjefafchaljkhbpfhfkdic
|
||||
- json-resume-exporter/caobgmmcpklomkcckaenhjlokpmfbdec
|
||||
- gnome-shell-integration/gphhapmejobijbbhgpjhcjognlahblep
|
||||
- google-dictionary-by-goog/mgijmajocgfcbeboacabfgobmjgjcoja
|
||||
- google-translate/aapbdbdomjkkjkaonfhkkikfgjllcleb
|
||||
|
@ -320,6 +321,7 @@ softwareGroups:
|
|||
- jiq
|
||||
- jqp
|
||||
- litecli
|
||||
- marp
|
||||
- mods
|
||||
- mycli
|
||||
- nomino
|
||||
|
@ -328,6 +330,7 @@ softwareGroups:
|
|||
- peco
|
||||
- pgcli
|
||||
- pywhat
|
||||
- resume
|
||||
- sad
|
||||
- slack-term
|
||||
- slides
|
||||
|
@ -412,6 +415,7 @@ softwareGroups:
|
|||
- ramda
|
||||
- schema
|
||||
- sttr
|
||||
- taplo
|
||||
- textql
|
||||
- toml-sort
|
||||
- xurls
|
||||
|
@ -929,6 +933,7 @@ softwareGroups:
|
|||
- imageoptim
|
||||
- ipfs-desktop
|
||||
- mjml
|
||||
- markmap
|
||||
- mockoon
|
||||
- mqttx
|
||||
- pieces
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
"amazonwebservices.aws-toolkit-vscode",
|
||||
"andi1984.tinypng",
|
||||
"angular.ng-template",
|
||||
"antfu.smart-clicks",
|
||||
"antonreshetov.masscode-assistant",
|
||||
"appland.appmap",
|
||||
"atlassian.atlascode",
|
||||
|
@ -121,6 +122,7 @@
|
|||
"lennartlence.chadcommit",
|
||||
"leonardssh.vscord",
|
||||
// "lightrun.lightrunplugin-saas", Creates a ~/.lightrun folder. Does not respect XDG spec.
|
||||
"llvm-vs-code-extensions.vscode-clangd",
|
||||
"logerfo.gitlab-notifications",
|
||||
"lottiefiles.vscode-lottie",
|
||||
"loyieking.smalise",
|
||||
|
@ -228,6 +230,7 @@
|
|||
// "platformio.platformio-ide", Creates ~/.platformio folder. Does not respect XDG spec.
|
||||
"pnp.polacode",
|
||||
"postman.postman-for-vscode",
|
||||
"powershell/vscode-powershell",
|
||||
"pranaygp.vscode-css-peek",
|
||||
"prisma.prisma",
|
||||
"pwabuilder.pwa-studio",
|
||||
|
|
|
@ -31,36 +31,64 @@ Plug '~/.vim/plugged/ansible-vim', {'do': './UltiSnips/generate.sh'}
|
|||
call plug#end()
|
||||
|
||||
" Install Coc extensions
|
||||
" TODO: Add https://github.com/yuki-yano/fzf-preview.vim
|
||||
" TODO: Add https://github.com/tpope/vim-fugitive
|
||||
if executable('node')
|
||||
let g:coc_global_extensions = [
|
||||
\ 'coc-angular',
|
||||
\ '@yaegassy/coc-ansible',
|
||||
\ 'coc-calc',
|
||||
\ 'coc-copilot',
|
||||
\ 'coc-htmlhint',
|
||||
\ 'coc-html-css-support',
|
||||
\ 'coc-markdownlint',
|
||||
\ 'coc-markdown-preview-enhanced',
|
||||
\ '@yaegassy/coc-nginx',
|
||||
\ 'coc-angular',
|
||||
\ 'coc-blade',
|
||||
\ 'coc-calc',
|
||||
\ 'coc-clangd',
|
||||
\ 'coc-copilot',
|
||||
\ 'coc-css',
|
||||
\ 'coc-cssmodules',
|
||||
\ 'coc-deno',
|
||||
\ 'coc-diagnostic',
|
||||
\ 'coc-docker',
|
||||
\ 'coc-emmet',
|
||||
\ 'coc-eslint',
|
||||
\ 'coc-explorer',
|
||||
\ 'coc-flutter',
|
||||
\ 'coc-git',
|
||||
\ 'coc-go',
|
||||
\ 'coc-highlight',
|
||||
\ 'coc-html-css-support',
|
||||
\ 'coc-html',
|
||||
\ 'coc-htmlhint',
|
||||
\ 'coc-java',
|
||||
\ 'coc-jedi',
|
||||
\ 'coc-json',
|
||||
\ 'coc-ltex',
|
||||
\ 'coc-lua',
|
||||
\ 'coc-markdown-preview-enhanced',
|
||||
\ 'coc-markdownlint',
|
||||
\ 'coc-markmap',
|
||||
\ 'coc-phpls',
|
||||
\ 'coc-powershell',
|
||||
\ 'coc-prettier',
|
||||
\ 'coc-stylelint',
|
||||
\ 'coc-spell-checker',
|
||||
\ 'coc-yaml',
|
||||
\ 'coc-xml',
|
||||
\ 'coc-sh',
|
||||
\ 'coc-css',
|
||||
\ 'coc-deno',
|
||||
\ 'coc-go',
|
||||
\ 'coc-html',
|
||||
\ 'coc-tsserver',
|
||||
\ 'coc-json',
|
||||
\ 'coc-markdownlint',
|
||||
\ 'coc-phpls',
|
||||
\ 'coc-prisma',
|
||||
\ 'coc-pyright',
|
||||
\ 'coc-solargraph',
|
||||
\ 'coc-rls',
|
||||
\ 'coc-solidity'
|
||||
\ 'coc-rust-analyzer',
|
||||
\ 'coc-sh',
|
||||
\ 'coc-solargraph',
|
||||
\ 'coc-solidity',
|
||||
\ 'coc-spell-checker',
|
||||
\ 'coc-stylelint',
|
||||
\ 'coc-sql',
|
||||
\ 'coc-sqlfluff',
|
||||
\ 'coc-svelte',
|
||||
\ 'coc-svg',
|
||||
\ 'coc-swagger',
|
||||
\ 'coc-symbol-line',
|
||||
\ 'coc-tailwindcss',
|
||||
\ 'coc-toml',
|
||||
\ 'coc-tsserver',
|
||||
\ 'coc-xml',
|
||||
\ 'coc-yaml',
|
||||
\ 'coc-yank'
|
||||
\]
|
||||
endif
|
||||
|
||||
|
|
36
software.yml
36
software.yml
|
@ -5860,6 +5860,42 @@ softwarePackages:
|
|||
_home: null
|
||||
_name: Fury
|
||||
brew: gemfury/tap/gemfury
|
||||
markmap:
|
||||
_bin: markmap
|
||||
_desc: Visualize your Markdown as mindmaps with Markmap.
|
||||
_docs: https://markmap.js.org/docs/markmap
|
||||
_github: https://github.com/markmap/markmap
|
||||
_home: https://markmap.js.org/
|
||||
_name: Markmap
|
||||
npm: markmap-cli
|
||||
resume:
|
||||
_bin: resume
|
||||
_desc: CLI tool to easily setup a new resume
|
||||
_docs: https://jsonresume.org/getting-started/
|
||||
_github: https://github.com/jsonresume/resume-cli
|
||||
_home: https://jsonresume.org/
|
||||
_name: JSON Resume CLI
|
||||
npm: resume-cli
|
||||
marp:
|
||||
_bin: marp
|
||||
_desc: A CLI interface for Marp and Marpit based converters
|
||||
_docs: https://github.com/marp-team/marp-cli
|
||||
_github: https://github.com/marp-team/marp-cli
|
||||
_home: https://marp.app/
|
||||
_name: Marp
|
||||
brew: marp-cli
|
||||
npm: '@marp-team/marp-cli'
|
||||
scoop: marp
|
||||
taplo:
|
||||
_bin: taplo
|
||||
_desc: A TOML toolkit written in Rust that includes TOML formatting abilities
|
||||
_docker: docker run tamasfe/taplo
|
||||
_docs: https://taplo.tamasfe.dev/cli/introduction.html
|
||||
_github: https://github.com/tamasfe/taplo
|
||||
_home: https://taplo.tamasfe.dev/
|
||||
_name: Taplo
|
||||
cargo: taplo-cli --locked
|
||||
npm: '@taplo/cli'
|
||||
pandoc:
|
||||
_bin: pandoc
|
||||
_deps:
|
||||
|
|
Loading…
Reference in a new issue