Tweak nvim configuration.

This commit is contained in:
Hans Goor 2024-11-23 16:57:48 +01:00
parent 24fa4d22a0
commit 53dfef6c9e
Signed by: eyedevelop
SSH key fingerprint: SHA256:Td89veptDEwCV8J3fjqnknNk7SbwzedYhauyC2nFBYg
4 changed files with 8 additions and 3 deletions

View file

@ -0,0 +1 @@
require("lualine").setup {}

View file

@ -1,6 +1,6 @@
require'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all"
ensure_installed = {},
ensure_installed = { "jsonc" },
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,

View file

@ -36,6 +36,10 @@ return require("packer").startup(function(use)
"rose-pine/neovim", tag = "v3.0.1",
}
use {
"nvim-lualine/lualine.nvim", branch = "master",
}
-- TreeSitter
use {
"nvim-treesitter/nvim-treesitter", tag = "v0.9.2",
@ -85,7 +89,7 @@ return require("packer").startup(function(use)
requires = { { "nvim-lua/plenary.nvim" } }
}
-- Git BLAME
-- Git stuff
use {
"APZelos/blamer.nvim", tag = "v1.3.0",
}

View file

@ -3,7 +3,7 @@ vim.opt.nu = true
vim.opt.relativenumber = true
vim.opt.ruler = true
vim.opt.wrap = true
vim.opt.textwidth = 79
vim.opt.textwidth = 0
vim.opt.fillchars = { eob = " " }
vim.opt.showmode = true
vim.opt.showcmd = true