1
0
Fork 0

Update nvim conf

This commit is contained in:
Florian RICHER (MrDev023) 2021-11-18 22:25:17 +01:00
parent 0ab499d32d
commit a39d7ffe66
6 changed files with 111 additions and 5 deletions

View file

@ -11,6 +11,16 @@ local function init()
-------------------- NvimTreeToggle ------------------------
map('n', '<F4>', '<cmd>NvimTreeToggle<CR>')
map('n', '<F5>', '<cmd>NvimTreeRefresh<CR>')
-------------------- BarBar --------------------------------
-- Move to previous/next
map('n', '<A-,>', ':BufferPrevious<CR>', opts)
map('n', '<A-.>', ':BufferNext<CR>', opts)
-- Re-order to previous/next
map('n', '<A-<>', ':BufferMovePrevious<CR>', opts)
map('n', '<A->>', ' :BufferMoveNext<CR>', opts)
-- Close buffer
map('n', '<A-c>', ':BufferClose<CR>', opts)
-------------------- LSP -----------------------------------
map('n', '<space>,', '<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>')
@ -32,6 +42,11 @@ local function init()
map('n', 'g*', "g*<Cmd>lua require('hlslens').start()<CR>")
map('n', 'g#', "g#<Cmd>lua require('hlslens').start()<CR>")
-------------------- DAP -----------------------------------
map('n', '<A-b>', '<cmd>lua require\'dap\'.toggle_breakpoint()<CR>', opts)
map('n', '<A-c>', '<cmd>lua require\'dap\'.continue()<CR>', opts)
map('n', '<A-o>', '<cmd>lua require\'dap\'.repl.open()<CR>', opts)
-------------------- FTerm ---------------------------------
map('n', '<F3>', '<CMD>lua require("FTerm").toggle()<CR>')
map('t', '<F3>', '<C-\\><C-n><CMD>lua require("FTerm").toggle()<CR>')

View file

@ -0,0 +1,7 @@
local function init()
call_with_helpers(require('plugins.dap.lldb').init)
end
return {
init = init
}

View file

@ -0,0 +1,29 @@
local dap = require('dap')
local function init()
dap.adapters.lldb = {
type = 'executable',
command = '/usr/bin/lldb-vscode',
name = 'lldb'
}
dap.configurations.cpp = {
{
name = "Launch",
type = "lldb",
request = "launch",
program = function()
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
end,
cwd = '${workspaceFolder}',
stopOnEntry = false,
args = {},
runInTerminal = false,
},
}
dap.configurations.c = dap.configurations.cpp
dap.configurations.rust = dap.configurations.cpp
end
return {
init = init
}

View file

@ -1,5 +1,6 @@
function configure_packages()
call_with_helpers(require('plugins.lspconfig').init)
call_with_helpers(require('plugins.dap').init)
call_with_helpers(require('plugins.compe').init)
call_with_helpers(require('plugins.nvim-rust-tools').init)
call_with_helpers(require('plugins.nvim-tree').init)

View file

@ -1,12 +1,12 @@
local function init()
require('FTerm').setup {
dimensions = {
require'FTerm'.setup {
border = 'double',
dimensions = {
height = 0.8,
width = 0.8,
x = 0.5,
y = 0.5
},
border = 'double'
}
}
end

View file

@ -1,5 +1,59 @@
local function init()
require("todo-comments").setup {}
require("todo-comments").setup {
signs = true, -- show icons in the signs column
sign_priority = 8, -- sign priority
-- keywords recognized as todo comments
keywords = {
FIX = {
icon = "", -- icon used for the sign, and in search results
color = "error", -- can be a hex color, or a named color (see below)
alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords
-- signs = false, -- configure signs for some keywords individually
},
TODO = { icon = "", color = "info" },
HACK = { icon = "", color = "warning" },
WARN = { icon = "", color = "warning", alt = { "WARNING", "XXX" } },
PERF = { icon = "", alt = { "OPTIM", "PERFORMANCE", "OPTIMIZE" } },
NOTE = { icon = "", color = "hint", alt = { "INFO" } },
},
merge_keywords = true, -- when true, custom keywords will be merged with the defaults
-- highlighting of the line containing the todo comment
-- * before: highlights before the keyword (typically comment characters)
-- * keyword: highlights of the keyword
-- * after: highlights after the keyword (todo text)
highlight = {
before = "", -- "fg" or "bg" or empty
keyword = "wide", -- "fg", "bg", "wide" or empty. (wide is the same as bg, but will also highlight surrounding characters)
after = "fg", -- "fg" or "bg" or empty
pattern = [[.*<(KEYWORDS)\s*:]], -- pattern or table of patterns, used for highlightng (vim regex)
comments_only = true, -- uses treesitter to match keywords in comments only
max_line_len = 400, -- ignore lines longer than this
exclude = {}, -- list of file types to exclude highlighting
},
-- list of named colors where we try to extract the guifg from the
-- list of hilight groups or use the hex color if hl not found as a fallback
colors = {
error = { "LspDiagnosticsDefaultError", "ErrorMsg", "#DC2626" },
warning = { "LspDiagnosticsDefaultWarning", "WarningMsg", "#FBBF24" },
info = { "LspDiagnosticsDefaultInformation", "#2563EB" },
hint = { "LspDiagnosticsDefaultHint", "#10B981" },
default = { "Identifier", "#7C3AED" },
},
search = {
command = "rg",
args = {
"--color=never",
"--no-heading",
"--with-filename",
"--line-number",
"--column",
},
-- regex that will be used to match keywords.
-- don't replace the (KEYWORDS) placeholder
pattern = [[\b(KEYWORDS):]], -- ripgrep regex
-- pattern = [[\b(KEYWORDS)\b]], -- match without the extra colon. You'll likely get false positives
},
}
end
return {