mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-11-13 02:03:59 +01:00
update nvim mappings & theme
This commit is contained in:
parent
37470f5811
commit
9bbe4a9fba
2 changed files with 25 additions and 2 deletions
|
@ -5,7 +5,7 @@ M.plugins = "custom.plugins"
|
|||
M.mappings = require "custom.mappings"
|
||||
|
||||
M.ui = {
|
||||
theme = "tomorrow_night",
|
||||
theme = "one_light",
|
||||
statusline = {
|
||||
theme = "default",
|
||||
separator_style = "arrow",
|
||||
|
|
|
@ -64,7 +64,7 @@ M.dap_ui = {
|
|||
function()
|
||||
require("dapui").eval()
|
||||
end,
|
||||
"Debug - eval expression"
|
||||
"Debug - eval expression (Alt+K)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -81,4 +81,27 @@ M.general = {
|
|||
}
|
||||
}
|
||||
|
||||
M.nvterm = {
|
||||
n = {
|
||||
["<leader>ti"] = {
|
||||
function()
|
||||
require("nvterm.terminal").toggle "float"
|
||||
end,
|
||||
"Toggle floating term"
|
||||
},
|
||||
["<leader>tv"] = {
|
||||
function()
|
||||
require("nvterm.terminal").toggle "vertical"
|
||||
end,
|
||||
"Toggle vertical term"
|
||||
},
|
||||
["<leader>th"] = {
|
||||
function()
|
||||
require("nvterm.terminal").toggle "horizontal"
|
||||
end,
|
||||
"Toggle horizontal term"
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
return M
|
||||
|
|
Loading…
Reference in a new issue