from-scratch rewrite #1

Open
kenobi wants to merge 29 commits from from-scratch into master
3 changed files with 39 additions and 35 deletions
Showing only changes of commit 186e2def11 - Show all commits

View File

@ -1,17 +1,17 @@
return { return {
"rebelot/kanagawa.nvim", "rebelot/kanagawa.nvim",
config = function() config = function()
require('kanagawa').setup({ require('kanagawa').setup({
compile=true, compile=true,
transparent=true, transparent=true,
background = { background = {
dark = "wave", dark = "wave",
light = "lotus" light = "lotus"
}, },
}); });
vim.cmd("colorscheme kanagawa"); vim.cmd("colorscheme kanagawa");
end, end,
build = function() build = function()
vim.cmd("KanagawaCompile"); vim.cmd("KanagawaCompile");
end, end,
} }

View File

@ -1,23 +1,23 @@
return { return {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
build = ":TSUpdate", build = ":TSUpdate",
config = function () config = function ()
local configs = require("nvim-treesitter.configs") local configs = require("nvim-treesitter.configs")
configs.setup({ configs.setup({
ensure_installed = "all", ensure_installed = "all",
sync_install = false, sync_install = false,
highlight = { enable = true }, highlight = { enable = true },
indent = { enable = true }, indent = { enable = true },
incremental_selection = { incremental_selection = {
enable = true, enable = true,
keymaps = { keymaps = {
init_selection = "<Enter>", init_selection = "<Enter>",
node_incremental = "<Enter>", node_incremental = "<Enter>",
scope_incremental = false, scope_incremental = false,
node_decremental = "<Backspace>" node_decremental = "<Backspace>"
}, },
} }
}) })
end end
} }

View File

@ -1 +1,5 @@
return { "echasnovski/mini.statusline", version = false, opts = {} } return {
"echasnovski/mini.statusline",
version = false,
opts = {}
}