improved colors
This commit is contained in:
parent
fbc1578825
commit
5902983705
|
|
@ -1 +1,2 @@
|
|||
vim.api.nvim_set_keymap("n", "<leader>f", "<CMD>Telescope find_files<CR>", {silent = true})
|
||||
vim.api.nvim_set_keymap("", "q:", "<Nop>", {silent = true})
|
||||
|
|
|
|||
|
|
@ -21,7 +21,13 @@ return require("packer").startup(
|
|||
function()
|
||||
-- Packer can manage itself
|
||||
use "wbthomason/packer.nvim"
|
||||
use "MasterGordon/monokai.nvim"
|
||||
use {
|
||||
"MasterGordon/monokai.nvim",
|
||||
config = function()
|
||||
require("monokai").setup()
|
||||
end
|
||||
}
|
||||
-- use "folke/tokyonight.nvim"
|
||||
use {
|
||||
"glepnir/galaxyline.nvim",
|
||||
branch = "main",
|
||||
|
|
@ -53,6 +59,10 @@ return require("packer").startup(
|
|||
)
|
||||
end
|
||||
}
|
||||
use {
|
||||
"nvim-treesitter/playground",
|
||||
requires = {"nvim-treesitter/nvim-treesitter"}
|
||||
}
|
||||
use {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
run = ":TSUpdate",
|
||||
|
|
@ -68,7 +78,10 @@ return require("packer").startup(
|
|||
enable_autocmd = true
|
||||
},
|
||||
highlight = {
|
||||
enable = true
|
||||
enable = true,
|
||||
custom_captures = {
|
||||
["jsx_element"] = "TSTag"
|
||||
}
|
||||
},
|
||||
indent = {
|
||||
enable = true
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
local gl = require("galaxyline")
|
||||
local colors = require("galaxyline.theme").default
|
||||
local monokai = require("monokai")
|
||||
local theme = require("monokai")
|
||||
local condition = require("galaxyline.condition")
|
||||
local gls = gl.section
|
||||
colors.bg = monokai.bg
|
||||
colors.bg = theme.classic.base3
|
||||
gl.short_line_list = {"NvimTree", "vista", "dbui", "packer"}
|
||||
|
||||
gls.left[2] = {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
vim.g.nvim_tree_auto_close = 1
|
||||
vim.g.nvim_tree_ignore = {".git", "node_modules", ".cache"}
|
||||
vim.g.nvim_tree_indent_markers = 1
|
||||
vim.api.nvim_set_keymap("", "<TAB>", ":NvimTreeFindFile<CR>", {})
|
||||
vim.api.nvim_set_keymap("", "<TAB>", ":NvimTreeFindFile<CR>", {silent = true})
|
||||
|
||||
vim.g.nvim_tree_icons = {
|
||||
default = "",
|
||||
|
|
|
|||
Loading…
Reference in New Issue