commit
This commit is contained in:
parent
9b6cac6a82
commit
d69725c9b2
@ -1,5 +1,8 @@
|
||||
local map = vim.keymap.set
|
||||
|
||||
map("n", "<C-left>", "<C-o>", { desc = "LSP Back" })
|
||||
map("n", "<C-right>", "<C-i>", { desc = "LSP Forward" })
|
||||
|
||||
-- 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" })
|
||||
|
@ -31,5 +31,5 @@ require("lazy").setup({
|
||||
-- colorscheme that will be used when installing plugins.
|
||||
install = { colorscheme = { "habamax" } },
|
||||
-- automatically check for plugin updates
|
||||
checker = { enabled = true },
|
||||
checker = { enabled = true, notify = false },
|
||||
})
|
||||
|
@ -2,6 +2,8 @@ local opt = vim.opt
|
||||
local o = vim.o
|
||||
local g = vim.g
|
||||
|
||||
opt.fillchars = { eob = " " }
|
||||
|
||||
g.mapleader = " "
|
||||
|
||||
opt.tabstop = 4
|
||||
|
@ -7,6 +7,7 @@ return {
|
||||
require("conform").setup({
|
||||
formatters_by_ft = {
|
||||
lua = { "stylua" },
|
||||
go = { "gofmt" },
|
||||
},
|
||||
})
|
||||
|
||||
|
@ -1,6 +1,11 @@
|
||||
return {
|
||||
"navarasu/onedark.nvim",
|
||||
config = function()
|
||||
require("onedark").setup({
|
||||
style = "darker",
|
||||
transparent = true,
|
||||
})
|
||||
|
||||
require("onedark").load()
|
||||
end,
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user