tmp
This commit is contained in:
parent
e3d3ab6680
commit
9c1281ef4f
7 changed files with 93 additions and 0 deletions
6
lua/config/autocmd.lua
Normal file
6
lua/config/autocmd.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||
pattern = "*",
|
||||
callback = function(args)
|
||||
require("conform").format({ bufnr = args.buf })
|
||||
end,
|
||||
})
|
|
@ -10,6 +10,13 @@ vim.opt.nu = true
|
|||
vim.cmd([[set listchars=eol:$,tab:>-,trail:~,extends:>,precedes:<,space:•]])
|
||||
vim.keymap.set("n", "<leader>hc", ":set list!<CR>", { silent = true })
|
||||
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
vim.keymap.set("n", ".", ":", {})
|
||||
|
||||
vim.keymap.set("i", "jk", "", {})
|
||||
|
||||
>>>>>>> c43d072 (tmp)
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
vim.opt.hlsearch = false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue