changed nvim conf (2)

This commit is contained in:
Julien Malka 2023-02-04 23:34:19 +01:00
parent 816bd9c84c
commit 3478c5573e
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -20,9 +20,51 @@ vim.cmd [[
set number
set relativenumber
colorscheme onedarker
colorscheme catppuccin
]]
require("catppuccin").setup({
flavour = "mocha", -- latte, frappe, macchiato, mocha
background = { -- :h background
light = "latte",
dark = "mocha",
},
transparent_background = false,
show_end_of_buffer = false, -- show the '~' characters after the end of buffers
term_colors = false,
dim_inactive = {
enabled = false,
shade = "dark",
percentage = 0.15,
},
no_italic = false, -- Force no italic
no_bold = false, -- Force no bold
styles = {
comments = { "italic" },
conditionals = { "italic" },
loops = {},
functions = {},
keywords = {},
strings = {},
variables = {},
numbers = {},
booleans = {},
properties = {},
types = {},
operators = {},
},
color_overrides = {},
custom_highlights = {},
integrations = {
cmp = true,
gitsigns = true,
nvimtree = true,
telescope = true,
notify = false,
mini = false,
-- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
},
})
require("nvim-tree").setup()
local builtin = require('telescope.builtin')