Update configuration
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
require("bufferline").setup {
|
||||
maximum_length = 25
|
||||
}
|
||||
@@ -1,52 +0,0 @@
|
||||
vim.g.catppuccin_flavour = "mocha"
|
||||
|
||||
require("catppuccin").setup {
|
||||
term_colors = true,
|
||||
styles = {
|
||||
conditionals = { "italic", "bold" },
|
||||
loops = { "italic", "bold" },
|
||||
functions = { "italic", "bold" },
|
||||
keywords = { "italic", "bold" },
|
||||
strings = { "bold" },
|
||||
variables = { "bold" },
|
||||
numbers = { "bold" },
|
||||
booleans = { "bold" },
|
||||
properties = { "italic" },
|
||||
types = { "italic", "bold" }
|
||||
},
|
||||
integrations = {
|
||||
barbar = true,
|
||||
gitsigns = true,
|
||||
cmp = true,
|
||||
nvimtree = true,
|
||||
treesitter_context = true,
|
||||
treesitter = true,
|
||||
symbols_outline = true,
|
||||
telescope = true,
|
||||
lsp_trouble = true,
|
||||
which_key = true,
|
||||
|
||||
indent_blankline = {
|
||||
enabled = true,
|
||||
colored_indent_levels = false
|
||||
},
|
||||
|
||||
native_lsp = {
|
||||
enabled = true,
|
||||
virtual_text = {
|
||||
errors = { "italic" },
|
||||
hints = { "italic" },
|
||||
warnings = { "italic" },
|
||||
information = { "italic" }
|
||||
},
|
||||
underlines = {
|
||||
errors = { "underline" },
|
||||
hints = { "underline" },
|
||||
warnings = { "underline" },
|
||||
information = { "underline" }
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
-- vim.cmd [[colorscheme catppuccin]]
|
||||
@@ -1,13 +1,11 @@
|
||||
require("colorizer").setup(
|
||||
{ "*" },
|
||||
{
|
||||
RGB = true,
|
||||
RRGGBB = true,
|
||||
names = true,
|
||||
require("colorizer").setup {
|
||||
user_default_options = {
|
||||
RRGGBBAA = true,
|
||||
AARRGGBB = true,
|
||||
rgb_fn = true,
|
||||
hsl_fn = true,
|
||||
css = true,
|
||||
css_fn = true
|
||||
css_fn = true,
|
||||
sass = { enable = true }
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
require("lsp-setup").setup {
|
||||
servers = {
|
||||
sumneko_lua = {}
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,14 @@
|
||||
require("lualine").setup {
|
||||
options = {
|
||||
-- theme = "catppuccin"
|
||||
theme = "tokyonight"
|
||||
},
|
||||
|
||||
extensions = {
|
||||
"nvim-tree",
|
||||
"fzf",
|
||||
"toggleterm",
|
||||
"symbols-outline"
|
||||
"nvim-dap-ui",
|
||||
"nvim-tree",
|
||||
"quickfix",
|
||||
"symbols-outline",
|
||||
"toggleterm"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,7 +18,8 @@ require("nvim-tree").setup {
|
||||
},
|
||||
|
||||
diagnostics = {
|
||||
enable = true
|
||||
enable = true,
|
||||
show_on_dirs = true
|
||||
},
|
||||
|
||||
filters = {
|
||||
|
||||
@@ -1,17 +1,10 @@
|
||||
require("tokyonight").setup {
|
||||
style = "night",
|
||||
terminal_colors = true,
|
||||
styles = {
|
||||
conditionals = { italic = true, bold = true },
|
||||
loops = { italic = true, bold = true },
|
||||
functions = { italic = true, bold = true },
|
||||
comments = { italic = true },
|
||||
keywords = { italic = true, bold = true },
|
||||
strings = { bold = true },
|
||||
variables = { bold = true },
|
||||
numbers = { bold = true },
|
||||
booleans = { bold = true },
|
||||
properties = { italic = true },
|
||||
types = { italic = true, bold = true }
|
||||
functions = { italic = true, bold = true },
|
||||
variables = { italic = true, bold = true }
|
||||
},
|
||||
lualine_bold = true
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
require("nvim-treesitter.configs").setup {
|
||||
ensure_installed = { "lua" },
|
||||
ensure_installed = { "vim", "lua", "typescript" },
|
||||
auto_install = false,
|
||||
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false
|
||||
|
||||
Reference in New Issue
Block a user