Actually Stowing Files

This commit is contained in:
ayushDumasia 2024-09-18 00:20:46 +05:30
parent 0f42a6b9c3
commit 500aecaea1
752 changed files with 1 additions and 67593 deletions

View 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 })