mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-22 23:53:40 +00:00
59 lines
1.4 KiB
Lua
59 lines
1.4 KiB
Lua
|
-- Colors the code
|
||
|
require("nvim-treesitter.configs").setup({
|
||
|
ensure_installed = {
|
||
|
"python",
|
||
|
"bash",
|
||
|
"dockerfile",
|
||
|
"go",
|
||
|
"graphql",
|
||
|
"hcl",
|
||
|
"terraform",
|
||
|
"javascript",
|
||
|
"json",
|
||
|
"make",
|
||
|
"markdown",
|
||
|
"prisma",
|
||
|
"proto",
|
||
|
"rust",
|
||
|
"typescript",
|
||
|
"vim",
|
||
|
"yaml",
|
||
|
"glsl",
|
||
|
"glimmer",
|
||
|
"jsonc",
|
||
|
"lua",
|
||
|
"blueprint",
|
||
|
},
|
||
|
-- Install languages synchronously (only applied to `ensure_installed`)
|
||
|
sync_install = false,
|
||
|
highlight = {
|
||
|
-- `false` will disable the whole extension
|
||
|
enable = true,
|
||
|
-- list of language that will be disabled
|
||
|
disable = { "" },
|
||
|
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
|
||
|
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
||
|
-- Using this option may slow down your editor, and you may see some duplicate highlights.
|
||
|
-- Instead of true it can also be a list of languages
|
||
|
additional_vim_regex_highlighting = false,
|
||
|
},
|
||
|
indent = {
|
||
|
-- dont enable this, messes up python indentation
|
||
|
enable = false,
|
||
|
disable = {},
|
||
|
},
|
||
|
})
|
||
|
|
||
|
-- Only colorizes the function/class/codeblock that the cursor is in
|
||
|
require("peepsight").setup({
|
||
|
-- typescript
|
||
|
"arrow_function",
|
||
|
"function_declaration",
|
||
|
"generator_function_declaration",
|
||
|
"method_definition",
|
||
|
})
|
||
|
require("peepsight").enable()
|
||
|
|
||
|
-- Transforms hex colors to their respective color
|
||
|
require("colorizer").setup()
|