Got tmux to act the way I want on startup let's goooo
This commit is contained in:
parent
01ee066c62
commit
32b53a7fd6
21 changed files with 171 additions and 73 deletions
dotfiles/neovim/lua/my/plugins
|
@ -1,18 +1,36 @@
|
|||
local M = {}
|
||||
|
||||
function M.setup()
|
||||
require 'nvim-treesitter.configs'.setup {
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
ensure_installed = {
|
||||
"bash", "javascript", "typescript", "c", "cpp", "css", "dockerfile",
|
||||
"elixir", "fish", "html", "json", "latex", "python", "rust", "scss",
|
||||
"toml", "tsx", "vim", "yaml", "nix", "kotlin"
|
||||
"bash",
|
||||
"javascript",
|
||||
"typescript",
|
||||
"c",
|
||||
"cpp",
|
||||
"css",
|
||||
"dockerfile",
|
||||
"elixir",
|
||||
"fish",
|
||||
"html",
|
||||
"json",
|
||||
"latex",
|
||||
"python",
|
||||
"rust",
|
||||
"scss",
|
||||
"toml",
|
||||
"tsx",
|
||||
"vim",
|
||||
"yaml",
|
||||
"nix",
|
||||
"kotlin"
|
||||
},
|
||||
sync_install = false,
|
||||
indent = { enable = true },
|
||||
highlight = {
|
||||
enable = true,
|
||||
|
||||
disable = { "kotlin", "tex", "latex" },
|
||||
disable = { "kotlin", "tex", "latex", "lean" },
|
||||
|
||||
-- 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).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue