09-11
This commit is contained in:
parent
82490d5b21
commit
6520e6ab4d
|
@ -23,6 +23,7 @@
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "19d257cf889f79f4022163c3fbb5e08639077bd8" },
|
"nvim-web-devicons": { "branch": "master", "commit": "19d257cf889f79f4022163c3fbb5e08639077bd8" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
|
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "df534c3042572fb958586facd02841e10186707c" },
|
"telescope.nvim": { "branch": "master", "commit": "df534c3042572fb958586facd02841e10186707c" },
|
||||||
|
"tree-sitter-hyprlang": { "branch": "master", "commit": "6858695eba0e63b9e0fceef081d291eb352abce8" },
|
||||||
"ui": { "branch": "v3.0", "commit": "87578bb7e2bc106127f013f9a1edd7a716f4f6c6" },
|
"ui": { "branch": "v3.0", "commit": "87578bb7e2bc106127f013f9a1edd7a716f4f6c6" },
|
||||||
"vim-tmux-navigator": { "branch": "master", "commit": "a9b52e7d36114d40350099f254b5f299a35df978" },
|
"vim-tmux-navigator": { "branch": "master", "commit": "a9b52e7d36114d40350099f254b5f299a35df978" },
|
||||||
"volt": { "branch": "main", "commit": "43f72b49037c191eb3cfe26ba7a5574b4bfce226" },
|
"volt": { "branch": "main", "commit": "43f72b49037c191eb3cfe26ba7a5574b4bfce226" },
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
require "nvchad.options"
|
require "nvchad.options"
|
||||||
vim.o.tabstop = 4 -- A TAB character looks like 4 spaces
|
|
||||||
vim.o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character
|
|
||||||
vim.o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character
|
|
||||||
vim.o.shiftwidth = 4 -- Number of spaces inserted when indenting
|
|
||||||
-- add yours here!
|
|
||||||
|
|
||||||
-- local o = vim.o
|
local o = vim.o
|
||||||
-- o.cursorlineopt ='both' -- to enable cursorline!
|
o.tabstop = 4 -- A TAB character looks like 4 spaces
|
||||||
|
o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character
|
||||||
|
o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character
|
||||||
|
o.shiftwidth = 4 -- Number of spaces inserted when indenting
|
||||||
|
o.cursorlineopt ='both' -- to enable cursorline!
|
||||||
|
|
||||||
|
vim.filetype.add({
|
||||||
|
extension = {
|
||||||
|
lnibuild = "bash"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"stevearc/conform.nvim",
|
"stevearc/conform.nvim",
|
||||||
-- event = 'BufWritePre', -- uncomment for format on save
|
event = 'BufWritePre', -- uncomment for format on save
|
||||||
config = function()
|
config = function()
|
||||||
require "configs.conform"
|
require "configs.conform"
|
||||||
end,
|
end,
|
||||||
|
@ -47,9 +47,13 @@ return {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
opts = {
|
opts = {
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"vim", "lua", "vimdoc",
|
"vim", "lua", "vimdoc",
|
||||||
"html", "css"
|
"html", "css"
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"luckasRanarison/tree-sitter-hyprlang",
|
||||||
|
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue