mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-16 10:45:53 -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 = " "
|
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…
Add table
Add a link
Reference in a new issue