Add more colorschemes
parent
f32bcb0e14
commit
aa1513412f
@ -1,11 +1,7 @@
|
|||||||
vim.opt.relativenumber = true
|
|
||||||
vim.opt.tabstop = 2
|
vim.opt.tabstop = 2
|
||||||
vim.opt.shiftwidth = 2
|
vim.opt.shiftwidth = 2
|
||||||
vim.opt.expandtab = true
|
vim.opt.expandtab = true
|
||||||
vim.bo.softtabstop = 2
|
vim.bo.softtabstop = 2
|
||||||
|
|
||||||
-- Colorscheme
|
-- Set custom colorscheme [[ NOTE: Never set it to onedark cuz it breaks the editor ]]
|
||||||
vim.cmd.colorscheme 'gruvbox'
|
vim.cmd.colorscheme 'tokyonight-night'
|
||||||
|
|
||||||
-- Nerd fonts
|
|
||||||
--vim.opt.guifont = ''
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
-- You can add your own plugins here or in other files in this directory!
|
|
||||||
-- I promise not to create any merge conflicts in this directory :)
|
|
||||||
--
|
|
||||||
-- See the kickstart.nvim README for more information
|
|
||||||
return {
|
|
||||||
'neoclide/coc.nvim', branch='release'
|
|
||||||
}
|
|
@ -1,40 +0,0 @@
|
|||||||
return {
|
|
||||||
'nvim-tree/nvim-web-devicons',
|
|
||||||
override = {
|
|
||||||
zsh = {
|
|
||||||
icon = "",
|
|
||||||
color = "#428850",
|
|
||||||
cterm_color = "65",
|
|
||||||
name = "Zsh"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
-- globally enable different highlight colors per icon (default to true)
|
|
||||||
-- if set to false all icons will have the default icon's color
|
|
||||||
color_icons = true,
|
|
||||||
-- globally enable default icons (default to false)
|
|
||||||
-- will get overriden by `get_icons` option
|
|
||||||
default = true,
|
|
||||||
-- globally enable "strict" selection of icons - icon will be looked up in
|
|
||||||
-- different tables, first by filename, and if not found by extension; this
|
|
||||||
-- prevents cases when file doesn't have any extension but still gets some icon
|
|
||||||
-- because its name happened to match some extension (default to false)
|
|
||||||
strict = true,
|
|
||||||
-- same as `override` but specifically for overrides by filename
|
|
||||||
-- takes effect when `strict` is true
|
|
||||||
override_by_filename = {
|
|
||||||
[".gitignore"] = {
|
|
||||||
icon = "",
|
|
||||||
color = "#f1502f",
|
|
||||||
name = "Gitignore"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
-- same as `override` but specifically for overrides by extension
|
|
||||||
-- takes effect when `strict` is true
|
|
||||||
override_by_extension = {
|
|
||||||
["log"] = {
|
|
||||||
icon = "",
|
|
||||||
color = "#81e043",
|
|
||||||
name = "Log"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
Loading…
Reference in New Issue