Add Config Files
This commit is contained in:
parent
ade387bdb6
commit
f071a73fdb
520 changed files with 45353 additions and 1 deletions
18
.config/nvim/lua/vim-options.lua
Normal file
18
.config/nvim/lua/vim-options.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
|
||||
-- Set basic indentation options
|
||||
vim.cmd("set expandtab")
|
||||
vim.cmd("set tabstop=2")
|
||||
vim.cmd("set softtabstop=2")
|
||||
vim.cmd("set shiftwidth=2")
|
||||
vim.g.mapleader = " "
|
||||
vim.opt.number = true
|
||||
--vim.keymap.set("n", "<C-c>", '"+y', { noremap = true, silent = true })
|
||||
|
||||
--vim.keymap.set("n", "<C-v>", '"+p', { noremap = true, silent = true })
|
||||
|
||||
vim.keymap.set("n", "<C-a>", "ggVG", { noremap = true, silent = true })
|
||||
|
||||
vim.keymap.set("n", "<C-t>", ":vsp<CR>", { noremap = true, silent = true })
|
||||
|
||||
-- vim.keymap.set("n", "<C-w>", ":tabclose<CR>", { noremap = true, silent = true })
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue