Tweak nvim configuration.
This commit is contained in:
parent
24fa4d22a0
commit
53dfef6c9e
4 changed files with 8 additions and 3 deletions
1
stowers/nvim/dot-config/nvim/after/plugin/lualine.lua
Normal file
1
stowers/nvim/dot-config/nvim/after/plugin/lualine.lua
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
require("lualine").setup {}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
require'nvim-treesitter.configs'.setup {
|
require'nvim-treesitter.configs'.setup {
|
||||||
-- A list of parser names, or "all"
|
-- A list of parser names, or "all"
|
||||||
ensure_installed = {},
|
ensure_installed = { "jsonc" },
|
||||||
|
|
||||||
-- Install parsers synchronously (only applied to `ensure_installed`)
|
-- Install parsers synchronously (only applied to `ensure_installed`)
|
||||||
sync_install = false,
|
sync_install = false,
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,10 @@ return require("packer").startup(function(use)
|
||||||
"rose-pine/neovim", tag = "v3.0.1",
|
"rose-pine/neovim", tag = "v3.0.1",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use {
|
||||||
|
"nvim-lualine/lualine.nvim", branch = "master",
|
||||||
|
}
|
||||||
|
|
||||||
-- TreeSitter
|
-- TreeSitter
|
||||||
use {
|
use {
|
||||||
"nvim-treesitter/nvim-treesitter", tag = "v0.9.2",
|
"nvim-treesitter/nvim-treesitter", tag = "v0.9.2",
|
||||||
|
|
@ -85,7 +89,7 @@ return require("packer").startup(function(use)
|
||||||
requires = { { "nvim-lua/plenary.nvim" } }
|
requires = { { "nvim-lua/plenary.nvim" } }
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Git BLAME
|
-- Git stuff
|
||||||
use {
|
use {
|
||||||
"APZelos/blamer.nvim", tag = "v1.3.0",
|
"APZelos/blamer.nvim", tag = "v1.3.0",
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ vim.opt.nu = true
|
||||||
vim.opt.relativenumber = true
|
vim.opt.relativenumber = true
|
||||||
vim.opt.ruler = true
|
vim.opt.ruler = true
|
||||||
vim.opt.wrap = true
|
vim.opt.wrap = true
|
||||||
vim.opt.textwidth = 79
|
vim.opt.textwidth = 0
|
||||||
vim.opt.fillchars = { eob = " " }
|
vim.opt.fillchars = { eob = " " }
|
||||||
vim.opt.showmode = true
|
vim.opt.showmode = true
|
||||||
vim.opt.showcmd = true
|
vim.opt.showcmd = true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue