mirror of
https://github.com/jiriks74/presence.nvim
synced 2024-11-23 20:37:50 +01:00
Add more file assets and fix README banner
This commit is contained in:
parent
41c1221cad
commit
a9adc37a7a
@ -1,4 +1,4 @@
|
|||||||
<img src="https://gist.githubusercontent.com/andweeb/df3216345530234289b87cf5080c2c60/raw/8de399cfed82c137f793e9f580027b5246bc4379/presence.nvim.png" height="120" alt="presence.nvim">​
|
<img src="https://gist.githubusercontent.com/andweeb/df3216345530234289b87cf5080c2c60/raw/8de399cfed82c137f793e9f580027b5246bc4379/presence.nvim.png" alt="presence.nvim">​
|
||||||
===
|
===
|
||||||
|
|
||||||
Discord [Rich Presence](https://discord.com/rich-presence) plugin for Neovim.
|
Discord [Rich Presence](https://discord.com/rich-presence) plugin for Neovim.
|
||||||
|
@ -1,10 +1,13 @@
|
|||||||
-- Discord application asset file names (name, key[, description]) by file extension
|
-- Discord application asset file names (name, key[, description]) by file extension
|
||||||
return {
|
return {
|
||||||
COMMIT_EDITMSG = { "git", "git" },
|
[".aliases"] = { ".aliases", "shell" },
|
||||||
Makefile = { "Makefile", "config" },
|
[".bash_profile"] = { ".bash_profile", "shell" },
|
||||||
|
[".bash_prompt"] = { ".bash_prompt", "shell" },
|
||||||
|
[".bashrc"] = { ".bashrc", "shell" },
|
||||||
[".dockercfg"] = { "Docker", "docker" },
|
[".dockercfg"] = { "Docker", "docker" },
|
||||||
[".dockerfile"] = { "Docker", "docker" },
|
[".dockerfile"] = { "Docker", "docker" },
|
||||||
[".dockerignore"] = { "Docker", "docker" },
|
[".dockerignore"] = { "Docker", "docker" },
|
||||||
|
[".editorconfig"] = { "EditorConfig", "editorconfig" },
|
||||||
[".eslintrc.cjs"] = { "ESLint", "eslint" },
|
[".eslintrc.cjs"] = { "ESLint", "eslint" },
|
||||||
[".eslintrc.js"] = { "ESLint", "eslint" },
|
[".eslintrc.js"] = { "ESLint", "eslint" },
|
||||||
[".eslintrc.json"] = { "ESLint", "eslint" },
|
[".eslintrc.json"] = { "ESLint", "eslint" },
|
||||||
@ -22,17 +25,30 @@ return {
|
|||||||
[".prettierrc.toml"] = { "Prettier", "prettier" },
|
[".prettierrc.toml"] = { "Prettier", "prettier" },
|
||||||
[".prettierrc.yaml"] = { "Prettier", "prettier" },
|
[".prettierrc.yaml"] = { "Prettier", "prettier" },
|
||||||
[".prettierrc.yml"] = { "Prettier", "prettier" },
|
[".prettierrc.yml"] = { "Prettier", "prettier" },
|
||||||
|
[".profile"] = { ".profile", "shell" },
|
||||||
[".tmux.conf"] = { "tmux", "tmux" },
|
[".tmux.conf"] = { "tmux", "tmux" },
|
||||||
[".vimrc"] = { ".vimrc", "vim" },
|
[".vimrc"] = { ".vimrc", "vim" },
|
||||||
|
[".zshrc"] = { ".zshrc", "shell" },
|
||||||
|
["Brewfile"] = { "Brewfile", "homebrew" },
|
||||||
|
["Brewfile.lock.json"] = { "Brewfile.lock.json", "homebrew" },
|
||||||
|
["COMMIT_EDITMSG"] = { "git", "git" },
|
||||||
["Dockerfile"] = { "Docker", "docker" },
|
["Dockerfile"] = { "Docker", "docker" },
|
||||||
|
["Makefile"] = { "Makefile", "code" },
|
||||||
|
["Rakefile"] = { "Rakefile", "ruby" },
|
||||||
|
["abookrc"] = { "abook", "abook" },
|
||||||
|
["alacritty.yaml"] = { "Alacritty config", "alacritty" },
|
||||||
|
["alacritty.yml"] = { "Alacritty config", "alacritty" },
|
||||||
|
["brew.sh"] = { "brew.sh", "homebrew" },
|
||||||
["docker-compose.yaml"] = { "Docker", "docker" },
|
["docker-compose.yaml"] = { "Docker", "docker" },
|
||||||
["docker-compose.yml"] = { "Docker", "docker" },
|
["docker-compose.yml"] = { "Docker", "docker" },
|
||||||
|
["gitconfig"] = { "git", "git" },
|
||||||
|
["kitty.conf"] = { "Kitty config", "kitty" },
|
||||||
["nginx"] = { "NGINX", "nginx" },
|
["nginx"] = { "NGINX", "nginx" },
|
||||||
["nginx.conf"] = { "NGINX", "nginx" },
|
["nginx.conf"] = { "NGINX", "nginx" },
|
||||||
["prettier.config.cjs"] = { "Prettier", "prettier" },
|
["prettier.config.cjs"] = { "Prettier", "prettier" },
|
||||||
["prettier.config.js"] = { "Prettier", "prettier" },
|
["prettier.config.js"] = { "Prettier", "prettier" },
|
||||||
["webpack.config.js"] = { "Webpack", "webpack" },
|
["webpack.config.js"] = { "Webpack", "webpack" },
|
||||||
abookrc = { "abook", "abook" },
|
["zshrc"] = { "zshrc", "shell" },
|
||||||
addressbook = { "abook", "abook" },
|
addressbook = { "abook", "abook" },
|
||||||
ahk = { "Autohotkey", "autohotkey" },
|
ahk = { "Autohotkey", "autohotkey" },
|
||||||
applescript = { "Applescript", "applescript" },
|
applescript = { "Applescript", "applescript" },
|
||||||
@ -80,11 +96,13 @@ return {
|
|||||||
markdown = { "Markdown", "markdown" },
|
markdown = { "Markdown", "markdown" },
|
||||||
md = { "Markdown", "markdown" },
|
md = { "Markdown", "markdown" },
|
||||||
mjs = { "JavaScript", "javascript" },
|
mjs = { "JavaScript", "javascript" },
|
||||||
|
ml = { "OCaml", "ocaml" },
|
||||||
nim = { "Nim", "nim" },
|
nim = { "Nim", "nim" },
|
||||||
nix = { "Nix", "nix" },
|
nix = { "Nix", "nix" },
|
||||||
pcss = { "PostCSS", "postcss" },
|
pcss = { "PostCSS", "postcss" },
|
||||||
php = { "PHP", "php" },
|
php = { "PHP", "php" },
|
||||||
pl = { "Perl", "perl" },
|
pl = { "Perl", "perl" },
|
||||||
|
plist = { "Property List", "markup" },
|
||||||
postcss = { "PostCSS", "postcss" },
|
postcss = { "PostCSS", "postcss" },
|
||||||
ps1 = { "PowerShell", "powershell" },
|
ps1 = { "PowerShell", "powershell" },
|
||||||
purs = { "PureScript", "purescript" },
|
purs = { "PureScript", "purescript" },
|
||||||
@ -92,6 +110,7 @@ return {
|
|||||||
r = { "R", "r" },
|
r = { "R", "r" },
|
||||||
rb = { "Ruby", "ruby" },
|
rb = { "Ruby", "ruby" },
|
||||||
re = { "Reason", "reason" },
|
re = { "Reason", "reason" },
|
||||||
|
res = { "ReScript", "rescript" },
|
||||||
rs = { "Rust", "rust" },
|
rs = { "Rust", "rust" },
|
||||||
sass = { "Sass", "sass" },
|
sass = { "Sass", "sass" },
|
||||||
scala = { "Scala", "scala" },
|
scala = { "Scala", "scala" },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user