update
This commit is contained in:
parent
ca0d4faec4
commit
bde11a8bd6
|
@ -15,6 +15,9 @@
|
|||
(map! [n :noremap] :<leader>fh "<cmd>Telescope help_tags<CR>")
|
||||
(map! [n :noremap] :<leader>fk "<cmd>Telescope keymaps<CR>")
|
||||
|
||||
(map! [n :noremap] :<leader>tt "<cmd>terminal<CR>")
|
||||
(map! [n :noremap] :<C-Space> "<cmd>bprev<CR>")
|
||||
|
||||
; remap keys so that they dont skip camelCase
|
||||
(map! [n :noremap :silent] :w "<Plug>CamelCaseMotion_w")
|
||||
(map! [n :noremap :silent] :b "<Plug>CamelCaseMotion_b")
|
||||
|
|
|
@ -28,6 +28,10 @@
|
|||
(set! incsearch true) ; incramentally search
|
||||
(set! autoindent true)
|
||||
(set! wildmode "longest,list")
|
||||
(set! inccommand :split)
|
||||
|
||||
; (lua "opt.formatoptions:remove \"o\"")
|
||||
|
||||
(set! mouse :v)
|
||||
(set! mouse :a)
|
||||
; (set! clipboard :unnamedplus) ; use system clipboard
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
(local lazypath (.. (vim.fn.stdpath :data) :/lazy/lazy.nvim))
|
||||
|
||||
(if (not (vim.loop.fs_stat lazypath))
|
||||
(vim.fn.system
|
||||
[:git :clone :--filter=blob:none :https://github.com/folke/lazy.nvim.git :--branch=stable lazypath]))
|
||||
(vim.fn.system
|
||||
[:git :clone :--filter=blob:none :https://github.com/folke/lazy.nvim.git :--branch=stable lazypath]))
|
||||
|
||||
(vim.opt.rtp:prepend lazypath)
|
||||
|
||||
|
|
Loading…
Reference in a new issue