diff options
| author | crupest <crupest@outlook.com> | 2024-03-25 22:31:24 +0800 | 
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2024-05-17 22:05:16 +0800 | 
| commit | f7e19fc0bda89788f8c4c92f86dfd95b799fe8b7 (patch) | |
| tree | 653914cf0d3d6ddc65555389b0432a25a5e18c97 /configs | |
| parent | 6bf0dc35fc0cf4a35f7b50c9f0e6529737ac5752 (diff) | |
| download | crupest-f7e19fc0bda89788f8c4c92f86dfd95b799fe8b7.tar.gz crupest-f7e19fc0bda89788f8c4c92f86dfd95b799fe8b7.tar.bz2 crupest-f7e19fc0bda89788f8c4c92f86dfd95b799fe8b7.zip  | |
configs(nvim): remove comment plugin for nvim 0.10 and update plugins.
Diffstat (limited to 'configs')
| -rw-r--r-- | configs/nvim/init.lua | 7 | ||||
| -rw-r--r-- | configs/nvim/lazy-lock.json | 1 | ||||
| -rw-r--r-- | configs/nvim/lua/plugins.lua | 1 | 
3 files changed, 0 insertions, 9 deletions
diff --git a/configs/nvim/init.lua b/configs/nvim/init.lua index e7dc507..3b8bc72 100644 --- a/configs/nvim/init.lua +++ b/configs/nvim/init.lua @@ -1,7 +1,3 @@ -if not vim.uv then -    vim.uv = vim.loop -end -  if vim.g.neovide then      -- spellchecker: disable-next-line      vim.opt.guifont = "FiraCode Nerd Font"; @@ -97,9 +93,6 @@ require("nvim-autopairs").setup {}  -- setup gitsigns  require('gitsigns').setup() --- setup comment -require('Comment').setup() -  -- setup format  local format = require("crupest.nvim.plugins.format")  format.setup_format() diff --git a/configs/nvim/lazy-lock.json b/configs/nvim/lazy-lock.json index dad002a..99d98ce 100644 --- a/configs/nvim/lazy-lock.json +++ b/configs/nvim/lazy-lock.json @@ -1,5 +1,4 @@  { -  "Comment.nvim": { "branch": "master", "commit": "0236521ea582747b58869cb72f70ccfa967d2e89" },    "LuaSnip": { "branch": "master", "commit": "78296bfabf756dbb6c7134aa219e75564dddf40f" },    "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },    "cmp-cmdline": { "branch": "main", "commit": "d250c63aa13ead745e3a40f61fdd3470efde3923" }, diff --git a/configs/nvim/lua/plugins.lua b/configs/nvim/lua/plugins.lua index 6f04738..0cca1ef 100644 --- a/configs/nvim/lua/plugins.lua +++ b/configs/nvim/lua/plugins.lua @@ -23,7 +23,6 @@ return {      "mfussenegger/nvim-lint",      "akinsho/toggleterm.nvim",      "lewis6991/gitsigns.nvim", -    "numToStr/Comment.nvim",      {          "nvim-neo-tree/neo-tree.nvim",          dependencies = {  | 
