Skip to content

Commit

Permalink
Change leader
Browse files Browse the repository at this point in the history
  • Loading branch information
ameykusurkar committed Aug 5, 2023
1 parent 8a83cbd commit 7c35500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ vim.opt.number = true -- Show line numbers
vim.opt.cursorline = true -- Highlights the line that the cursor is on
vim.opt.timeoutlen = 300 -- How long to wait mid key sequence before timing out

vim.g.mapleader = ","
vim.g.mapleader = " "

local function nnoremap(shortcut, command)
vim.keymap.set("n", shortcut, command, { noremap = true })
Expand Down Expand Up @@ -90,7 +90,7 @@ end)
---- APPEARANCE ----
vim.opt.termguicolors = true -- Enable 24-bit colors
vim.opt.background = "dark"
vim.api.nvim_command("colorscheme base16-gruvbox-dark-hard")
vim.api.nvim_command("colorscheme base16-twilight")

vim.opt.showmode = false -- Don't show mode in status line, as lightline does it
vim.opt.laststatus = 2 -- Always show status line
Expand Down

0 comments on commit 7c35500

Please sign in to comment.