changed keymaps for neo-tree and enabled dev icons
This commit is contained in:
		
							parent
							
								
									de44f49101
								
							
						
					
					
						commit
						98875f8b43
					
				
							
								
								
									
										12
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										12
									
								
								init.lua
								
								
								
								
							| 
						 | 
					@ -91,7 +91,7 @@ vim.g.mapleader = ' '
 | 
				
			||||||
vim.g.maplocalleader = ' '
 | 
					vim.g.maplocalleader = ' '
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- Set to true if you have a Nerd Font installed and selected in the terminal
 | 
					-- Set to true if you have a Nerd Font installed and selected in the terminal
 | 
				
			||||||
vim.g.have_nerd_font = false
 | 
					vim.g.have_nerd_font = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- [[ Setting options ]]
 | 
					-- [[ Setting options ]]
 | 
				
			||||||
-- See `:help vim.opt`
 | 
					-- See `:help vim.opt`
 | 
				
			||||||
| 
						 | 
					@ -100,9 +100,7 @@ vim.g.have_nerd_font = false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- Make line numbers default
 | 
					-- Make line numbers default
 | 
				
			||||||
vim.opt.number = true
 | 
					vim.opt.number = true
 | 
				
			||||||
-- You can also add relative line numbers, to help with jumping.
 | 
					vim.opt.relativenumber = true
 | 
				
			||||||
--  Experiment for yourself to see if you like it!
 | 
					 | 
				
			||||||
-- vim.opt.relativenumber = true
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- Enable mouse mode, can be useful for resizing splits for example!
 | 
					-- Enable mouse mode, can be useful for resizing splits for example!
 | 
				
			||||||
vim.opt.mouse = 'a'
 | 
					vim.opt.mouse = 'a'
 | 
				
			||||||
| 
						 | 
					@ -838,13 +836,13 @@ require('lazy').setup({
 | 
				
			||||||
    -- change the command in the config to whatever the name of that colorscheme is.
 | 
					    -- change the command in the config to whatever the name of that colorscheme is.
 | 
				
			||||||
    --
 | 
					    --
 | 
				
			||||||
    -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
 | 
					    -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
 | 
				
			||||||
    'folke/tokyonight.nvim',
 | 
					    'morhetz/gruvbox',
 | 
				
			||||||
    priority = 1000, -- Make sure to load this before all the other start plugins.
 | 
					    priority = 1000, -- Make sure to load this before all the other start plugins.
 | 
				
			||||||
    init = function()
 | 
					    init = function()
 | 
				
			||||||
      -- Load the colorscheme here.
 | 
					      -- Load the colorscheme here.
 | 
				
			||||||
      -- Like many other themes, this one has different styles, and you could load
 | 
					      -- Like many other themes, this one has different styles, and you could load
 | 
				
			||||||
      -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
 | 
					      -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
 | 
				
			||||||
      vim.cmd.colorscheme 'tokyonight-night'
 | 
					      vim.cmd.colorscheme 'gruvbox'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      -- You can configure highlights by doing something like:
 | 
					      -- You can configure highlights by doing something like:
 | 
				
			||||||
      vim.cmd.hi 'Comment gui=none'
 | 
					      vim.cmd.hi 'Comment gui=none'
 | 
				
			||||||
| 
						 | 
					@ -930,7 +928,7 @@ require('lazy').setup({
 | 
				
			||||||
  -- require 'kickstart.plugins.indent_line',
 | 
					  -- require 'kickstart.plugins.indent_line',
 | 
				
			||||||
  -- require 'kickstart.plugins.lint',
 | 
					  -- require 'kickstart.plugins.lint',
 | 
				
			||||||
  -- require 'kickstart.plugins.autopairs',
 | 
					  -- require 'kickstart.plugins.autopairs',
 | 
				
			||||||
  -- require 'kickstart.plugins.neo-tree',
 | 
					  require 'kickstart.plugins.neo-tree',
 | 
				
			||||||
  -- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
 | 
					  -- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
 | 
					  -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -11,7 +11,7 @@ return {
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  cmd = 'Neotree',
 | 
					  cmd = 'Neotree',
 | 
				
			||||||
  keys = {
 | 
					  keys = {
 | 
				
			||||||
    { '\\', ':Neotree reveal<CR>', desc = 'NeoTree reveal', silent = true },
 | 
					    { '<leader>b', ':Neotree toggle<CR>', desc = 'NeoTree toggle', silent = true },
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  opts = {
 | 
					  opts = {
 | 
				
			||||||
    filesystem = {
 | 
					    filesystem = {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue