Initial commit

This commit is contained in:
Saeed Afzal
2022-03-09 12:31:08 +00:00
commit 847914b7ea
18 changed files with 349 additions and 0 deletions

1
lua/core/init.lua Normal file
View File

@@ -0,0 +1 @@
require("core.settings")

46
lua/core/mappings.lua Normal file
View File

@@ -0,0 +1,46 @@
local plugins = require("plugins.mappings")
local function map(mode, key, cmd, options)
options = options or { noremap = true }
vim.api.nvim_set_keymap(mode, key, cmd, options)
end
local M = {}
M.bufdel = function()
map("n", plugins.bufdel.closeBuffer, ":BufDel <CR>")
end
M.bufferline = function()
local m = plugins.bufferline
map("n", m.nextBuffer, ":BufferLineCycleNext <CR>")
map("n", m.prevBuffer, ":BufferLineCyclePrev <CR>")
end
M.gitsigns = function()
local m = plugins.gitsigns
map("n", m.blameLine, ":Gitsigns blame_line <CR>")
map("n", m.diffThis, ":Gitsigns diffthis <CR>")
end
M.nvimtree = function()
local m = plugins.nvimtree
map("n", m.toggle, ":NvimTreeToggle <CR>")
map("n", m.focus, ":NvimTreeFocus <CR>")
end
M.telescope = function()
local m = plugins.telescope
map("n", m.buffers, ":Telescope buffers <CR>")
map("n", m.diagnostics, ":Telescope diagnostic <CR>")
map("n", m.liveGrep, ":Telescope live_grep <CR>")
map("n", m.files, ":Telescope find_files <CR>")
map("n", m.gitCommits, ":Telescope git_commits <CR>")
map("n", m.gitStatus, ":Telescope git_status <CR>")
end
return M

18
lua/core/settings.lua Normal file
View File

@@ -0,0 +1,18 @@
local opt = vim.opt
local g = vim.g
g.mapleader = " "
opt.backup = false
opt.swapfile = false
opt.termguicolors = true
opt.number = true
opt.mouse = "a"
opt.cursorline = true
opt.hidden = true
-- Indentation
opt.expandtab = true
opt.smartindent = true
opt.shiftwidth = 4
opt.tabstop = 4