stuff pog

This commit is contained in:
iris committed 2023-06-03 23:41:40 -04:00
1 parent 79e7cca227
commit 2fba77dc76
5 files changed
+28 -5

No files matched your search

+6 -1
View File
@@ -6,8 +6,13 @@ local j = "e"
local k = "i"
local l = "o"
-- terminal
local m = u.mapping
-- terminal copy paste
m.map("v", "<C-c>", '"+y')
m.map("i", "<C-v>", '<esc>"+p`]a')
-- terminal
m.map("t", "<esc>", "<C-\\><C-n>")
m.map("t", "<tab>", "<tab>")
m.map("t", "<C-"..h..">", "<C-\\><C-n><C-w>h")
-1
View File
@@ -4,7 +4,6 @@ local g = vim.g
-- basic stuff
o.number = true
o.showmode = false
o.clipboard = "unnamedplus"
g.mapleader = " "
g.maplocalleader = ","
+13 -2
View File
@@ -9,11 +9,22 @@ end
hl("ExtraWhitespace", { ctermbg = "red", bg = "#ff8888" })
vim.cmd [[match ExtraWhitespace /\s\+$/]]
local bg = "#201918"
-- make background transparent
-- gbhl("Normal", "none")
-- gbhl("EndOfBuffer", "none")
-- gbhl("SignColumn", "none")
-- gbhl("NeoTreeNormal", "none")
-- gbhl("NeoTreeNormalNC", "none")
-- gbhl("NeoTreeEndOfBuffer", "none")
--[=[
for _, name in ipairs({
"NeoTreeNormal",
"NeoTreeNormalNC",
"MsgArea",
"lualine_a_command",
"lualine_a_inactive",
"lualine_b_inactive",
"lualine_c_inactive",
}) do gbhl(name, bg) end
]=]--
+4
View File
@@ -15,6 +15,10 @@ return {
"scalameta/nvim-metals",
dependencies = { "nvim-lua/plenary.nvim" }
},
{
"numToStr/Comment.nvim",
config = function() require "Comment".setup{} end
},
"mfussenegger/nvim-jdtls",
"folke/neodev.nvim",
}
+5 -1
View File
@@ -22,7 +22,11 @@ return {
"nvim-lualine/lualine.nvim",
dependencies = { "kyazdani42/nvim-web-devicons" },
config = function()
require("lualine").setup {}
require("lualine").setup {
options = {
theme = "catppuccin"
}
}
end
},
{