Skip to content

Commit b9216a4

Browse files
committed
wip
1 parent c28a4ba commit b9216a4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

init.lua

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
9191
vim.g.maplocalleader = ' '
9292

9393
-- Set to true if you have a Nerd Font installed and selected in the terminal
94-
vim.g.have_nerd_font = false
94+
vim.g.have_nerd_font = true
9595

9696
-- [[ Setting options ]]
9797
-- See `:help vim.opt`
@@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
102102
vim.opt.number = true
103103
-- You can also add relative line numbers, to help with jumping.
104104
-- Experiment for yourself to see if you like it!
105-
-- vim.opt.relativenumber = true
105+
vim.opt.relativenumber = true
106106

107107
-- Enable mouse mode, can be useful for resizing splits for example!
108108
vim.opt.mouse = 'a'
@@ -192,8 +192,7 @@ vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper win
192192
-- NOAH
193193
-- Remap 'jj' to 'Esc' in insert mode
194194
vim.api.nvim_set_keymap('i', 'jj', '<Esc>', { noremap = true, silent = true })
195-
require'lspconfig'.pyright.setup{}
196-
195+
require('lspconfig').pyright.setup {}
197196

198197
-- [[ Basic Autocommands ]]
199198
-- See `:help lua-guide-autocommands`
@@ -882,7 +881,7 @@ require('lazy').setup({
882881
-- require 'kickstart.plugins.indent_line',
883882
-- require 'kickstart.plugins.lint',
884883
-- require 'kickstart.plugins.autopairs',
885-
-- require 'kickstart.plugins.neo-tree',
884+
require 'kickstart.plugins.neo-tree',
886885
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
887886

888887
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`

0 commit comments

Comments
 (0)