minor update
This commit is contained in:
parent
5c9c12f32c
commit
60a8a14667
2 changed files with 5 additions and 2 deletions
|
|
@ -32,6 +32,7 @@ vim.opt.list = true -- Sets how neovim will display certain whitespace ch
|
|||
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
||||
opt.mouse = "a" -- Enable mouse mode
|
||||
opt.number = true -- Print line number
|
||||
opt.nrformats = 'blank,bin,hex'
|
||||
opt.pumblend = 10 -- Popup blend
|
||||
opt.pumheight = 10 -- Maximum number of entries in a popup
|
||||
opt.relativenumber = true -- Relative line numbers
|
||||
|
|
@ -154,11 +155,12 @@ vim.filetype.add({
|
|||
-- ╰─────────────────────────────────────────────────────────╯
|
||||
|
||||
vim.lsp.enable({
|
||||
"ansiblels",
|
||||
"lua_ls",
|
||||
"nushell",
|
||||
"pyright",
|
||||
"ruff",
|
||||
"rust_analyzer",
|
||||
"ansiblels",
|
||||
})
|
||||
|
||||
vim.diagnostic.config({
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
event = { "BufReadPost", "BufNewFile", "BufWritePre", "VeryLazy" },
|
||||
lazy = false,
|
||||
branch = "master",
|
||||
dependencies = {
|
||||
{
|
||||
"JoosepAlviste/nvim-ts-context-commentstring",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue