Compare commits
6 Commits
6a89ea1833
...
1edafd6d41
Author | SHA1 | Date | |
---|---|---|---|
doryan | 1edafd6d41 | ||
doryan | fe031e5bf5 | ||
doryan | 2606c2f6c7 | ||
doryan | 1ef25aed50 | ||
doryan | 8f0c29527d | ||
doryan | bbd28672d5 |
9
init.lua
9
init.lua
|
@ -1,11 +1,11 @@
|
|||
local vanila_vim_autostart_commands = {
|
||||
"set number",
|
||||
"set clipboard=unnamedplus",
|
||||
"set nowrap"
|
||||
"set number",
|
||||
"set clipboard=unnamedplus",
|
||||
"set nowrap"
|
||||
}
|
||||
|
||||
for _, cmd in pairs(vanila_vim_autostart_commands) do
|
||||
vim.cmd(cmd)
|
||||
vim.cmd(cmd)
|
||||
end
|
||||
|
||||
require("config.lazy")
|
||||
|
@ -24,6 +24,7 @@ require("ibl").setup()
|
|||
require("config.plugins.lsp_diagnostic")
|
||||
require("config.plugins.lualine")
|
||||
require("config.plugins.navic")
|
||||
require("config.plugins.noice")
|
||||
require("toggleterm").setup()
|
||||
require("config.plugins.treesitter")
|
||||
require("config.plugins.neotree")
|
||||
|
|
|
@ -15,9 +15,9 @@ require("Comment").setup({
|
|||
---LHS of operator-pending mappings in NORMAL and VISUAL mode
|
||||
opleader = {
|
||||
---Line-comment keymap
|
||||
line = 'gc',
|
||||
line = '<leader>/',
|
||||
---Block-comment keymap
|
||||
block = 'gb',
|
||||
block = '<leader>/',
|
||||
},
|
||||
---LHS of extra mappings
|
||||
extra = {
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
vim.api.nvim_create_autocmd({ 'BufReadPost', 'BufNewFile', 'BufWritePost' }, {
|
||||
once = true,
|
||||
group = vim.api.nvim_create_augroup('DropBarSetup', {}),
|
||||
callback = function()
|
||||
if vim.g.loaded_dropbar then
|
||||
return
|
||||
end
|
||||
require('dropbar').setup()
|
||||
end,
|
||||
})
|
||||
require('dropbar').setup()
|
||||
vim.ui.select = require('dropbar.utils.menu').select
|
||||
vim.api.nvim_set_hl(0, 'DropBarMenuHoverEntry', { link = 'PmenuExtraSel' })
|
||||
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
require("noice").setup({
|
||||
lsp = {
|
||||
override = {
|
||||
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
||||
["vim.lsp.util.stylize_markdown"] = true,
|
||||
["cmp.entry.get_documentation"] = true, -- requires hrsh7th/nvim-cmp
|
||||
},
|
||||
},
|
||||
presets = {
|
||||
command_palette = true, -- position the cmdline and popupmenu together
|
||||
long_message_to_split = true, -- long messages will be sent to a split
|
||||
inc_rename = false, -- enables an input dialog for inc-rename.nvim
|
||||
lsp_doc_border = false, -- add a border to hover docs and signature help
|
||||
},
|
||||
})
|
|
@ -1,5 +1,7 @@
|
|||
local map = vim.keymap.set
|
||||
|
||||
|
||||
|
||||
map("n", ";", ":", { desc = "CMD enter command mode" })
|
||||
|
||||
map("i", "<C-h>", "<Left>", { desc = "move left" })
|
||||
|
|
|
@ -61,7 +61,6 @@ return {
|
|||
},
|
||||
{
|
||||
'Bekaboo/dropbar.nvim',
|
||||
-- optional, but required for fuzzy finder support
|
||||
dependencies = {
|
||||
'nvim-telescope/telescope-fzf-native.nvim',
|
||||
build = 'make'
|
||||
|
@ -73,6 +72,14 @@ return {
|
|||
vim.keymap.set('n', '];', dropbar_api.select_next_context, { desc = 'Select next context' })
|
||||
end
|
||||
},
|
||||
{
|
||||
"folke/noice.nvim",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"MunifTanjim/nui.nvim",
|
||||
"rcarriga/nvim-notify",
|
||||
},
|
||||
},
|
||||
{
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
branch = "v2.x",
|
||||
|
|
Loading…
Reference in New Issue