mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-11 16:30:30 -07:00
bleh
This commit is contained in:
parent
d9d98ca2c8
commit
f9df0605c0
2 changed files with 4 additions and 3 deletions
|
|
@ -6,12 +6,12 @@ local g = vim.g
|
|||
g.toggle_theme_icon = " "
|
||||
|
||||
-------------------------------------- options ------------------------------------------
|
||||
o.laststatus = 3
|
||||
o.laststatus = 3 -- this line is necessary otherwise statusline breaks
|
||||
o.showmode = false
|
||||
|
||||
o.clipboard = "unnamedplus"
|
||||
o.cursorline = true
|
||||
o.cursorlineopt = "number"
|
||||
-- o.cursorlineopt = "number"
|
||||
|
||||
-- Indenting
|
||||
o.expandtab = true
|
||||
|
|
@ -29,7 +29,7 @@ o.mousemodel = "extend"
|
|||
-- Numbers
|
||||
o.number = true
|
||||
o.numberwidth = 2
|
||||
o.ruler = false
|
||||
o.ruler = true
|
||||
|
||||
-- disable nvim intro
|
||||
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-k>", "<C-w>k", { desc = "Switch Window up" })
|
||||
map("n", "<leader>qq", ":wa<CR>:qa<CR>")
|
||||
map("i", "jk", "<Esc>")
|
||||
|
||||
-- telescope keybinds
|
||||
local builtin = require "telescope.builtin"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue