Quellcode durchsuchen

chore(plugins): bump version (#2181)

kylo252 vor 3 Jahren
Ursprung
Commit
31ca6c57fa
2 geänderte Dateien mit 26 neuen und 24 gelöschten Zeilen
  1. 16 14
      CONTRIBUTING.md
  2. 10 10
      lua/lvim/plugins.lua

+ 16 - 14
CONTRIBUTING.md

@@ -10,10 +10,9 @@ One of the best ways to begin contributing in a meaningful way is by helping fin
 
 ## Getting Started
 
-1. Backup your ~/.config/nvim
-2. Follow the [Installation](https://www.lunarvim.org/01-installing.html) guide
-3. Link your fork with the repository `git remote add upstream https://github.com/lunarvim/LunarVim.git`
-4. That's it ! You can now `git fetch upstream` and `git rebase [-i] upstream/rolling` to update your branches with the latest contributions.
+1. Follow the [Installation](https://www.lunarvim.org/01-installing.html) guide
+2. Link your fork with the repository `git remote add upstream https://github.com/lunarvim/LunarVim.git`, or use `gh fork`
+3. That's it! You can now `git fetch upstream` and `git rebase [-i] upstream/rolling` to update your branches with the latest contributions.
 
 <br />
 
@@ -38,23 +37,25 @@ Install [pre-commit](https://github.com/pre-commit/pre-commit) which will run al
 ## Code Conventions
 
 All lua code is formatted with [Stylua](https://github.com/JohnnyMorganz/StyLua).
-* Use snake_case
-* Avoid platform-dependent code
 ```bash
-stylua --config-path ./utils/.stylua.toml -c .
+# configurations are already stored in .stylua.toml
+stylua -c .
 ```
 
 All shell code is formatted according to [Google Shell Style Guide](https://google.github.io/styleguide/shellguide.html)
 * use two spaces instead of tabs
 ```bash
-shfmt -i 2 -ci -l -d .
+shfmt -i 2 -ci -bn -l -d .
 ```
 
 <br />
 
 ## Pull Requests (PRs)
 
-To avoid duplicate work, create a draft pull request.
+- To avoid duplicate work, create a draft pull request.
+- Your PR must pass all the [automated-ci-tests](https://github.com/neovim/neovim/actions).
+- Use a [git-feature-branch](https://www.atlassian.com/git/tutorials/comparing-workflows) instead of the master/rolling branch.
+- Use a [rebase-workflow](http://git-scm.com/book/en/v2/Git-Branching-Rebasing).
 
 ### Commit Messages
 * Commit header is limited to 72 characters.
@@ -81,11 +82,12 @@ To avoid duplicate work, create a draft pull request.
 * **build**: changes that affect the build system or external dependencies (example scopes: npm, pip, rg)
 * **ci**: changes to CI configuration files and scripts (example scopes: format, lint, issue_templates)
 * **docs**: changes to the documentation only
-* **feat**: a new feature for the user
-* **fix**: a bug fix
-* **perf**: a performance improvement
-* **refactor**: a code change that neither fixes a bug nor adds a feature
-* **test**: Adding missing tests or correcting existing tests
+* **feat**: new feature for the user
+* **fix**: bug fix
+* **perf**: performance improvement
+* **refactor**: code change that neither fixes a bug nor adds a feature
+* **test**: adding missing tests or correcting existing tests
+* **chore**: all the rest, including version bump for plugins
 
 **Real world examples:**
 ```

+ 10 - 10
lua/lvim/plugins.lua

@@ -2,24 +2,24 @@ local commit = {
   barbar = "6e638309efcad2f308eb9c5eaccf6f62b794bbab",
   cmp_buffer = "f83773e2f433a923997c5faad7ea689ec24d1785",
   cmp_luasnip = "d6f837f4e8fe48eeae288e638691b91b97d1737f",
-  cmp_nvim_lsp = "b4251f0fca1daeb6db5d60a23ca81507acf858c2",
+  cmp_nvim_lsp = "ebdfc204afb87f15ce3d3d3f5df0b8181443b5ba",
   cmp_path = "4d58224e315426e5ac4c5b218ca86cab85f80c79",
   comment = "90df2f87c0b17193d073d1f72cea2e528e5b162d",
   dapinstall = "568d946a99edb6780912cb39ca68c368516cd853",
   dashboard_nvim = "d82ddae95fd4dc4c3b7bbe87f09b1840fbf20ecb",
   fixcursorhold = "0e4e22d21975da60b0fd2d302285b3b603f9f71e",
-  friendly_snippets = "9f04462bcabfd108341a6e47ed742b09a6a5b975",
-  gitsigns = "7aad5257fa043b9acf3d40ae064a1685003254da",
+  friendly_snippets = "b654034902280a9d1f4444f145fd7fa4c9f6d9cb",
+  gitsigns = "f4648dcc055a10573f36e83343592824155ab466",
   lua_dev = "03a44ec6a54b0a025a633978e8541584a02e46d9",
   lualine = "70691ae350fdbe1f15758e3b8e2973742a7967a9",
   luasnip = "0222ee63c9e4b80e6000d064f8efd8edcc6d0c48",
-  nlsp_settings = "3fe6c683fd11423171fb1cf1ccb641825fd16e28",
+  nlsp_settings = "3a3942b5d1da30e3ca0dc431aada3191c5952054",
   null_ls = "567daff80cc629302e1ac196f74d0dec8738249a",
-  nvim_autopairs = "c027bbb7eb417ad0be7d5263b66c1638e971e36b",
-  nvim_cmp = "614e00de2424d1c19a3f653120b63d5b2d10b21a",
-  nvim_dap = "4ba35c3640d79c0d1c4a21c7fecb3f483717be93",
-  nvim_lsp_installer = "62f353e4cc12fbaa12ab4534a23e755bb307c2e5",
-  nvim_lspconfig = "2c70b7b0095b4bbe55aaf0dc27a2581d1cafe491",
+  nvim_autopairs = "97e454ce9b1371373105716d196c1017394bc947",
+  nvim_cmp = "76d92fca643d53b735ddaf07e0da293949973764",
+  nvim_dap = "08349ab5da2148965deb2e778065017059bff584",
+  nvim_lsp_installer = "7a4f43beaf579f48b190e4a0784d4b3317157495",
+  nvim_lspconfig = "5dc61fa6bf837b91c4de2ed95ba6c840e47d25ac",
   nvim_notify = "15f52efacd169ea26b0f4070451d3ea53f98cd5a",
   nvim_tree = "0a2f6b0b6ba558a88c77a6b262af647760e6eca8",
   nvim_treesitter = "a76e1eb89d57e25cedbc71d6bf8e2d2c23d5d85b",
@@ -30,7 +30,7 @@ local commit = {
   popup = "b7404d35d5d3548a82149238289fa71f7f6de4ac",
   project = "71d0e23dcfc43cfd6bb2a97dc5a7de1ab47a6538",
   structlog = "6f1403a192791ff1fa7ac845a73de9e860f781f1",
-  telescope = "015a35626d5a293dc9c19dc2bb301f25850961f6",
+  telescope = "860cc656632dbee8d817b1dfa5e6a5a73265286f",
   telescope_fzf_native = "b8662b076175e75e6497c59f3e2799b879d7b954",
   toggleterm = "f23866b8fbb0703be4e15d50c814ffe496242a67",
   which_key = "387fd676d3f9b419d38890820f6e262dc0fadb46",