Adding colors visualization in nvim

This commit is contained in:
Zoe Roux
2022-02-02 14:47:51 +01:00
parent 13e5fb7101
commit 77efd9446c
5 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -38,4 +38,4 @@
! white
*color7: #e5e9f0
*color15: #e7b6de
*color15: #e7b6de
@@ -65,7 +65,7 @@ bufferline.setup {
-- [focused and unfocused]. eg: { '|', '|' }
separator_style = "thin", -- | "thick" | "thin" | { 'any', 'any' },
enforce_regular_tabs = true,
always_show_bufferline = true,
always_show_bufferline = false,
-- sort_by = 'id' | 'extension' | 'relative_directory' | 'directory' | 'tabs' | function(buffer_a, buffer_b)
-- -- add custom logic
-- return buffer_a.modified > buffer_b.modified
@@ -5,7 +5,7 @@ vim.g.nvim_tree_icons = {
symlink = "",
git = {
unstaged = "",
staged = "S",
staged = "",
unmerged = "",
renamed = "",
deleted = "",
@@ -56,3 +56,5 @@ vim.cmd "set whichwrap+=<,>,[,],h,l"
vim.cmd [[set iskeyword+=-]]
vim.cmd [[set formatoptions-=cro]] -- TODO: this doesn't seem to work
vim.g.colorizer_nomap = 1
@@ -48,6 +48,7 @@ return packer.startup(function(use)
use "tpope/vim-repeat"
use "tpope/vim-surround"
use "mg979/vim-visual-multi"
use {"RRethy/vim-hexokinase", run = "make hexokinase"}
use "windwp/nvim-autopairs" -- Autopairs, integrates with both cmp and treesitter
use "numToStr/Comment.nvim" -- Easily comment stuff
use "nishigori/increment-activator"