Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
529 B

  1. -- Set leader key
  2. vim.g.mapleader = ','
  3. -- Load lazy.nvim
  4. local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
  5. if not vim.loop.fs_stat(lazypath) then
  6. vim.fn.system({
  7. "git",
  8. "clone",
  9. "--filter=blob:none",
  10. "https://github.com/folke/lazy.nvim.git",
  11. "--branch=stable", -- latest stable release
  12. lazypath,
  13. })
  14. end
  15. vim.opt.rtp:prepend(lazypath)
  16. require("lazy").setup("plugins")
  17. -- Initialize Keybinds
  18. require('config')
  19. -- Initialize Keybinds
  20. require('keybinds')
  21. -- Initialize LSP
  22. require('lsp')