aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/custom/plugins/init.lua
blob: 5b40def861d09cfb7a5395cb181dbc5ef51dc7fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  return {
{
      "williamboman/nvim-lsp-installer",
      config = function()
         local lsp_installer = require "nvim-lsp-installer"

         lsp_installer.on_server_ready(function(server)
            local opts = {}

            if server.name == "denols" then
               opts.root_dir = vim.loop.cwd
            end

            server:setup(opts)
            vim.cmd [[ do User LspAttachBuffers ]]
         end)
      end,
   }
   -- Custom stuff
   ,{ "nathom/filetype.nvim" }

   ,{
      "karb94/neoscroll.nvim",
      opt = true,
      config = function()
         require("neoscroll").setup()
      end,

      -- lazy loading
      setup = function()
         require("core.utils").packer_lazy_load "neoscroll.nvim"
      end,
   }

   ,{
      "prettier/vim-prettier",
   }
   ,{
      "editorconfig/editorconfig-vim",
   }

}
/dotfiles.git/commit/.config/swaylock/config?id=e16dc2afe8e28d681e625b95e6b009656f70d383&follow=1'>swaylock: set background imageLuca Matei Pintilie1-2/+5 2024-07-11hyprlock: add configLuca Matei Pintilie2-0/+132 2024-07-11swayrbar: add configLuca Matei Pintilie6-0/+252