Started on NeoVim config and updated install script
This commit is contained in:
		
							
								
								
									
										1
									
								
								nvim/lua/luke-else/init.lua
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								nvim/lua/luke-else/init.lua
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
require("luke-else.packer")
 | 
			
		||||
							
								
								
									
										21
									
								
								nvim/lua/luke-else/packer.lua
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								nvim/lua/luke-else/packer.lua
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,21 @@
 | 
			
		||||
vim.cmd [[packadd packer.nvim]]
 | 
			
		||||
 | 
			
		||||
return require('packer').startup(function(use)
 | 
			
		||||
    -- Packer can manage itself
 | 
			
		||||
    use 'wbthomason/packer.nvim'
 | 
			
		||||
 | 
			
		||||
    use {
 | 
			
		||||
        'nvim-telescope/telescope.nvim', tag = '0.1.0',
 | 
			
		||||
        -- or                            , branch = '0.1.x',
 | 
			
		||||
        requires = { {'nvim-lua/plenary.nvim'} }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    use { -- Theme inspired by Atom
 | 
			
		||||
        'navarasu/onedark.nvim',
 | 
			
		||||
        priority = 1000,
 | 
			
		||||
        config = function()
 | 
			
		||||
        vim.cmd.colorscheme 'onedark'
 | 
			
		||||
        end
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
end)
 | 
			
		||||
		Reference in New Issue
	
	Block a user