Skip to content

Commit

Permalink
add personal settings to init lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Lumonde-software committed Sep 29, 2024
1 parent fa0abcd commit 5c17ceb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ I hope you enjoy your Neovim journey,
P.S. You can delete this when you're done too. It's your config now! :)
--]]

-- individual keymap
vim.keymap.set('n', 'ciy', 'ciw<C-r>0<ESC>')

-- Set <space> as the leader key
-- See `:help mapleader`
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
Expand Down Expand Up @@ -139,6 +142,8 @@ vim.opt.timeoutlen = 300
vim.opt.splitright = true
vim.opt.splitbelow = true

vim.opt.tabstop = 2

-- Sets how neovim will display certain whitespace characters in the editor.
-- See `:help 'list'`
-- and `:help 'listchars'`
Expand Down

0 comments on commit 5c17ceb

Please sign in to comment.