summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-06-17 21:24:02 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2024-06-17 21:24:02 -0400
commit7662376a0498aa3feb830a2ec7b3126706f49f2f (patch)
tree9de6be7e682750a58d6cf29bed3cf36e351a962d
parentf64dc028e57cc3cb0c79d73743ea851b656e0bfb (diff)
pre-merge
-rw-r--r--lua/core/langmap.lua3
-rw-r--r--lua/plugins/colorscheme.lua1
-rw-r--r--lua/plugins/orgmode.lua7
3 files changed, 7 insertions, 4 deletions
diff --git a/lua/core/langmap.lua b/lua/core/langmap.lua
index 5b8c04d..ab20029 100644
--- a/lua/core/langmap.lua
+++ b/lua/core/langmap.lua
@@ -1,5 +1,2 @@
vim.api.nvim_command("set langmap+=é/")
vim.api.nvim_command("set langmap+=É?")
-vim.api.nvim_command("set langmap+=¸]")
-vim.api.nvim_command("set langmap+=^[")
-vim.api.nvim_command("set langmap+=`'")
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua
index 94d60d4..e919515 100644
--- a/lua/plugins/colorscheme.lua
+++ b/lua/plugins/colorscheme.lua
@@ -50,6 +50,7 @@ return { -- No nonsense, very stoic
-- You can set any of the style values specified for `:h nvim_set_hl`
type = { bold = true },
lsp = { underline = true },
+ keywords = { italic = true },
},
})
local fullbg = "#111a1f"
diff --git a/lua/plugins/orgmode.lua b/lua/plugins/orgmode.lua
index 9711609..45bee81 100644
--- a/lua/plugins/orgmode.lua
+++ b/lua/plugins/orgmode.lua
@@ -3,9 +3,14 @@ return {
dependencies = {
{ -- Nicely formatted bullet Headings
"akinsho/org-bullets.nvim",
- dependencies = "nvim-treesitter/nvim-treesitter",
+ dependencies = {
+ "nvim-treesitter/nvim-treesitter",
+ },
config = true,
},
+ {
+ "dhruvasagar/vim-table-mode",
+ },
},
event = 'VeryLazy',
ft = { 'org' },