This commit is contained in:
Timofey.Kovalev
2024-11-24 01:25:21 +03:00
parent 2515473a1e
commit 608fbb0d71
5 changed files with 27 additions and 2 deletions

View File

@ -7,6 +7,8 @@ map("n", "<C-right>", "<C-i>", { desc = "LSP Forward" })
map("v", "<C-c>", '"+y', { desc = "Copy selected" })
map({ "i", "n" }, "<C-v>", '"+p', { desc = "Past" })
map("n", "<C-s>", ":w<CR>", { desc = "Save file" })
-- neo-tree
map("n", "<leader>e", ":Neotree<CR>", { desc = "nvimtree focus window" })
map("n", "<leader>g", ":Neotree git_status float<CR>", { desc = "open gis status" })

View File

@ -1,11 +1,14 @@
local opt = vim.opt
local o = vim.o
local g = vim.g
local wo = vim.wo
opt.fillchars = { eob = " " }
g.mapleader = " "
wo.signcolumn = "auto:2-3"
opt.tabstop = 4
o.laststatus = 3