mirror of
https://github.com/zoriya/dotfiles.git
synced 2026-05-27 00:23:58 +00:00
Adding colors visualization in nvim
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user