scratch
Gabe Farrell 2 years ago
parent d9d98ca2c8
commit f9df0605c0

@ -6,12 +6,12 @@ local g = vim.g
g.toggle_theme_icon = "" g.toggle_theme_icon = ""
-------------------------------------- options ------------------------------------------ -------------------------------------- options ------------------------------------------
o.laststatus = 3 o.laststatus = 3 -- this line is necessary otherwise statusline breaks
o.showmode = false o.showmode = false
o.clipboard = "unnamedplus" o.clipboard = "unnamedplus"
o.cursorline = true o.cursorline = true
o.cursorlineopt = "number" -- o.cursorlineopt = "number"
-- Indenting -- Indenting
o.expandtab = true o.expandtab = true
@ -29,7 +29,7 @@ o.mousemodel = "extend"
-- Numbers -- Numbers
o.number = true o.number = true
o.numberwidth = 2 o.numberwidth = 2
o.ruler = false o.ruler = true
-- disable nvim intro -- disable nvim intro
opt.shortmess:append "sI" opt.shortmess:append "sI"

@ -8,6 +8,7 @@ map("n", "<C-l>", "<C-w>l", { desc = "Switch Window right" })
map("n", "<C-j>", "<C-w>j", { desc = "Switch Window down" }) map("n", "<C-j>", "<C-w>j", { desc = "Switch Window down" })
map("n", "<C-k>", "<C-w>k", { desc = "Switch Window up" }) map("n", "<C-k>", "<C-w>k", { desc = "Switch Window up" })
map("n", "<leader>qq", ":wa<CR>:qa<CR>") map("n", "<leader>qq", ":wa<CR>:qa<CR>")
map("i", "jk", "<Esc>")
-- telescope keybinds -- telescope keybinds
local builtin = require "telescope.builtin" local builtin = require "telescope.builtin"

Loading…
Cancel
Save