Add search stuff
This commit is contained in:
parent
ebcbbae0d0
commit
65cc4496be
8
init.lua
8
init.lua
|
|
@ -274,7 +274,7 @@ require('lazy').setup({
|
||||||
-- NOTE: You can change these options as you wish!
|
-- NOTE: You can change these options as you wish!
|
||||||
|
|
||||||
-- Set highlight on search
|
-- Set highlight on search
|
||||||
vim.o.hlsearch = false
|
vim.o.hlsearch = true
|
||||||
|
|
||||||
-- Make line numbers default
|
-- Make line numbers default
|
||||||
vim.wo.number = true
|
vim.wo.number = true
|
||||||
|
|
@ -494,6 +494,12 @@ end, 0)
|
||||||
-- Newline on <CR>
|
-- Newline on <CR>
|
||||||
vim.keymap.set('n', '<CR>', 'o<Esc>')
|
vim.keymap.set('n', '<CR>', 'o<Esc>')
|
||||||
|
|
||||||
|
-- Drop hlsearch
|
||||||
|
vim.keymap.set('n', '?q', ':set hlsearch!<CR>')
|
||||||
|
|
||||||
|
-- Drop line numbers
|
||||||
|
vim.keymap.set('n', '?l', ':set number!<CR>')
|
||||||
|
|
||||||
-- [[ Configure LSP ]]
|
-- [[ Configure LSP ]]
|
||||||
-- This function gets run when an LSP connects to a particular buffer.
|
-- This function gets run when an LSP connects to a particular buffer.
|
||||||
local on_attach = function(_, bufnr)
|
local on_attach = function(_, bufnr)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue