nvim: various improvements

This commit is contained in:
Nydragon 2024-05-24 20:24:44 +09:00
parent 34db23916b
commit 6cc1723294
5 changed files with 47 additions and 23 deletions

View file

@ -43,7 +43,6 @@ vim.g.nvim_tree_respect_buf_cwd = 1
vim.api.nvim_exec( vim.api.nvim_exec(
[[ [[
autocmd! TextYankPost * silent! lua vim.highlight.on_yank() autocmd! TextYankPost * silent! lua vim.highlight.on_yank()
autocmd! BufWritePost * FormatWrite
]], ]],
false false
) )

View file

@ -80,4 +80,12 @@ end
M.build = build M.build = build
local augroup = vim.api.nvim_create_augroup
local autocmd = vim.api.nvim_create_autocmd
augroup("__formatter__", { clear = true })
autocmd("BufWritePost", {
group = "__formatter__",
command = ":FormatWrite",
})
return M return M

View file

@ -8,7 +8,7 @@ vim.keymap.set("n", "<space>q", vim.diagnostic.setloclist, opts)
-- Use an on_attach function to only map the following keys -- Use an on_attach function to only map the following keys
-- after the language server attaches to the current buffer -- after the language server attaches to the current buffer
local on_attach = function(client, bufnr) local on_attach = function(_, bufnr)
-- Enable completion triggered by <c-x><c-o> -- Enable completion triggered by <c-x><c-o>
vim.api.nvim_buf_set_option(bufnr, "omnifunc", "v:lua.vim.lsp.omnifunc") vim.api.nvim_buf_set_option(bufnr, "omnifunc", "v:lua.vim.lsp.omnifunc")
@ -73,8 +73,6 @@ require("lspconfig").lua_ls.setup({
-- "${3rd}/luv/library" -- "${3rd}/luv/library"
-- "${3rd}/busted/library", -- "${3rd}/busted/library",
}, },
-- or pull in all of 'runtimepath'. NOTE: this is a lot slower
-- library = vim.api.nvim_get_runtime_file("", true)
}, },
}) })
end, end,

View file

@ -1,7 +1,14 @@
vim.g.loaded_netrw = 1 vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1 vim.g.loaded_netrwPlugin = 1
local api = require("nvim-tree.api")
local function open_nvim_tree(data) local function open_nvim_tree(data)
if api.tree.is_visible() then
return
end
vim.notify(vim.loop.cwd())
-- buffer is a real file on the disk -- buffer is a real file on the disk
local real_file = vim.fn.filereadable(data.file) == 1 local real_file = vim.fn.filereadable(data.file) == 1
@ -20,11 +27,11 @@ local function open_nvim_tree(data)
end end
-- open the tree, find the file but don't focus it -- open the tree, find the file but don't focus it
require("nvim-tree.api").tree.toggle({ api.tree.open({
focus = false, focus = false,
find_file = true, find_file = true,
path = path, path = vim.loop.cwd(),
}) })
end end
--vim.api.nvim_create_autocmd({ "VimEnter" }, { callback = open_nvim_tree }) vim.api.nvim_create_autocmd({ "BufAdd" }, { callback = open_nvim_tree })

View file

@ -21,6 +21,9 @@ require("lazy").setup({
require("nvim-tree-config") require("nvim-tree-config")
end, end,
opts = { opts = {
diagnostics = {
enable = true,
},
update_focused_file = { enable = true }, update_focused_file = { enable = true },
filters = { filters = {
dotfiles = false, dotfiles = false,
@ -59,6 +62,7 @@ require("lazy").setup({
"simrat39/rust-tools.nvim", "simrat39/rust-tools.nvim",
opts = { opts = {
on_attach = function(_, bufnr) on_attach = function(_, bufnr)
vim.notify("rust-tools attached")
-- Hover actions -- Hover actions
vim.keymap.set("n", "<C-space>", rt.hover_actions.hover_actions, { buffer = bufnr }) vim.keymap.set("n", "<C-space>", rt.hover_actions.hover_actions, { buffer = bufnr })
-- Code action groups -- Code action groups
@ -106,8 +110,16 @@ require("lazy").setup({
}, },
}, -- thin bar indicating an arbitray character limit }, -- thin bar indicating an arbitray character limit
{ { -- fuzzy file finder
"nvim-telescope/telescope.nvim", -- fuzzy file finder "nvim-telescope/telescope.nvim",
opts = {
pickers = {
find_files = {
--hidden = true,
no_ignore = true,
},
},
},
}, },
{ {
"hrsh7th/nvim-cmp", "hrsh7th/nvim-cmp",
@ -131,11 +143,11 @@ require("lazy").setup({
local opts = require("formatter-config").build() local opts = require("formatter-config").build()
require("formatter").setup(opts) require("formatter").setup(opts)
end end,
}, },
{ {
"rcarriga/nvim-notify", "rcarriga/nvim-notify",
opts = { opts = {
render = "wrapped-compact", render = "wrapped-compact",
max_width = function() max_width = function()
return math.floor(vim.o.columns * 0.5) return math.floor(vim.o.columns * 0.5)
@ -146,13 +158,21 @@ require("lazy").setup({
vim.notify = require("notify") vim.notify = require("notify")
end, end,
}, },
{
"direnv/direnv.vim",
},
{ {
"stevearc/dressing.nvim", "stevearc/dressing.nvim",
}, },
{ {
"nvimdev/dashboard-nvim", "nvimdev/dashboard-nvim",
event = "VimEnter", event = "VimEnter",
dependencies = { { "nvim-tree/nvim-web-devicons" } }, opts = {
change_to_vcs_root = true,
},
dependencies = {
"nvim-tree/nvim-web-devicons",
},
}, },
{ {
"sudormrfbin/cheatsheet.nvim", "sudormrfbin/cheatsheet.nvim",
@ -232,14 +252,6 @@ require("lazy").setup({
}, },
}) })
local augroup = vim.api.nvim_create_augroup
local autocmd = vim.api.nvim_create_autocmd
augroup("__formatter__", { clear = true })
autocmd("BufWritePost", {
group = "__formatter__",
command = ":FormatWrite",
})
vim.diagnostic.config({ vim.diagnostic.config({
virtual_text = false, virtual_text = false,
signs = true, signs = true,