✨ Add mac-dotfiles
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
		
							parent
							
								
									d49a3c5404
								
							
						
					
					
						commit
						c014c6cd6e
					
				
					 34 changed files with 929 additions and 0 deletions
				
			
		
							
								
								
									
										32
									
								
								mac/.config/nvim/lua/lazy_setup.lua
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								mac/.config/nvim/lua/lazy_setup.lua
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,32 @@
 | 
			
		|||
require("lazy").setup({
 | 
			
		||||
  {
 | 
			
		||||
    "AstroNvim/AstroNvim",
 | 
			
		||||
    version = "^4", -- Remove version tracking to elect for nighly AstroNvim
 | 
			
		||||
    import = "astronvim.plugins",
 | 
			
		||||
    opts = { -- AstroNvim options must be set here with the `import` key
 | 
			
		||||
      mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up
 | 
			
		||||
      maplocalleader = ",", -- This ensures the localleader key must be configured before Lazy is set up
 | 
			
		||||
      icons_enabled = true, -- Set to false to disable icons (if no Nerd Font is available)
 | 
			
		||||
      pin_plugins = nil, -- Default will pin plugins when tracking `version` of AstroNvim, set to true/false to override
 | 
			
		||||
      update_notifications = true, -- Enable/disable notification about running `:Lazy update` twice to update pinned plugins
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  { import = "community" },
 | 
			
		||||
  { import = "plugins" },
 | 
			
		||||
} --[[@as LazySpec]], {
 | 
			
		||||
  -- Configure any other `lazy.nvim` configuration options here
 | 
			
		||||
  install = { colorscheme = { "astrotheme", "habamax" } },
 | 
			
		||||
  ui = { backdrop = 100 },
 | 
			
		||||
  performance = {
 | 
			
		||||
    rtp = {
 | 
			
		||||
      -- disable some rtp plugins, add more to your liking
 | 
			
		||||
      disabled_plugins = {
 | 
			
		||||
        "gzip",
 | 
			
		||||
        "netrwPlugin",
 | 
			
		||||
        "tarPlugin",
 | 
			
		||||
        "tohtml",
 | 
			
		||||
        "zipPlugin",
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
} --[[@as LazyConfig]])
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue