Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| befd7d745c | |||
| 59752bb8d4 |
@@ -14,39 +14,20 @@ padding.y = 10
|
|||||||
style.shape = "Beam"
|
style.shape = "Beam"
|
||||||
style.blinking = "Always"
|
style.blinking = "Always"
|
||||||
|
|
||||||
# Kanagawa Wave Alacritty Colors
|
# LACKLUSTER COLORS
|
||||||
[colors.primary]
|
[colors.primary]
|
||||||
background = '#141415'
|
background = '#101010'
|
||||||
foreground = '#dcd7ba'
|
|
||||||
|
|
||||||
[colors.normal]
|
[colors.normal]
|
||||||
black = '#090618'
|
# black is gray0
|
||||||
red = '#c34043'
|
black = '#080808'
|
||||||
green = '#76946a'
|
red = '#C11F1F'
|
||||||
yellow = '#c0a36e'
|
green = '#789978'
|
||||||
blue = '#7e9cd8'
|
yellow = '#ffAA88'
|
||||||
magenta = '#957fb8'
|
blue = '#7788AA'
|
||||||
cyan = '#6a9589'
|
magenta = '#BD61A3'
|
||||||
white = '#c8c093'
|
# cyan is set to lack
|
||||||
|
cyan = '#708090'
|
||||||
|
# white is set to luster
|
||||||
|
white = '#DEEEED'
|
||||||
|
|
||||||
[colors.bright]
|
|
||||||
black = '#727169'
|
|
||||||
red = '#e82424'
|
|
||||||
green = '#98bb6c'
|
|
||||||
yellow = '#e6c384'
|
|
||||||
blue = '#7fb4ca'
|
|
||||||
magenta = '#938aa9'
|
|
||||||
cyan = '#7aa89f'
|
|
||||||
white = '#dcd7ba'
|
|
||||||
|
|
||||||
[colors.selection]
|
|
||||||
background = '#2d4f67'
|
|
||||||
foreground = '#c8c093'
|
|
||||||
|
|
||||||
[[colors.indexed_colors]]
|
|
||||||
index = 16
|
|
||||||
color = '#ffa066'
|
|
||||||
|
|
||||||
[[colors.indexed_colors]]
|
|
||||||
index = 17
|
|
||||||
color = '#ff5d62'
|
|
||||||
|
|||||||
+7
-26
@@ -1,10 +1,6 @@
|
|||||||
require("vim._core.ui2").enable({})
|
require("vim._core.ui2").enable({})
|
||||||
map = vim.keymap.set
|
map = vim.keymap.set
|
||||||
vim.g.termguicolors = true
|
vim.o.termguicolors = true
|
||||||
vim.g.netrw_keepdir = 1
|
|
||||||
vim.g.netrw_winsize = 30
|
|
||||||
vim.g.netrw_liststyle = 3
|
|
||||||
vim.g.netrw_browse_split = 4
|
|
||||||
vim.o.nu = true
|
vim.o.nu = true
|
||||||
vim.o.swapfile = false
|
vim.o.swapfile = false
|
||||||
vim.o.winborder = "single"
|
vim.o.winborder = "single"
|
||||||
@@ -21,9 +17,7 @@ vim.o.foldlevel = 99
|
|||||||
vim.o.completeopt = "menuone,noselect,fuzzy,nosort"
|
vim.o.completeopt = "menuone,noselect,fuzzy,nosort"
|
||||||
vim.o.undofile = true
|
vim.o.undofile = true
|
||||||
vim.o.undodir = os.getenv("HOME") .. "/.cache/nvim/undodir"
|
vim.o.undodir = os.getenv("HOME") .. "/.cache/nvim/undodir"
|
||||||
vim.cmd.colorscheme("retrobox")
|
|
||||||
vim.o.errorformat = "%f(%l:%c) %m,%-G%.%#"
|
vim.o.errorformat = "%f(%l:%c) %m,%-G%.%#"
|
||||||
|
|
||||||
-- -----------------------------
|
-- -----------------------------
|
||||||
-- @BINDS
|
-- @BINDS
|
||||||
-- -----------------------------
|
-- -----------------------------
|
||||||
@@ -42,7 +36,6 @@ map("n", "<C-p>", ":find ")
|
|||||||
map("n", "<C-e>", ":Lex<CR>")
|
map("n", "<C-e>", ":Lex<CR>")
|
||||||
map("n", "<C-backspace>", ":bd<CR>")
|
map("n", "<C-backspace>", ":bd<CR>")
|
||||||
map("i", "<C-h>", vim.lsp.buf.signature_help)
|
map("i", "<C-h>", vim.lsp.buf.signature_help)
|
||||||
|
|
||||||
-- -----------------------------
|
-- -----------------------------
|
||||||
-- @PLUGINS
|
-- @PLUGINS
|
||||||
-- -----------------------------
|
-- -----------------------------
|
||||||
@@ -50,14 +43,16 @@ vim.pack.add({
|
|||||||
{ src = 'https://github.com/ibhagwan/fzf-lua' },
|
{ src = 'https://github.com/ibhagwan/fzf-lua' },
|
||||||
{ src = 'https://github.com/neovim/nvim-lspconfig' },
|
{ src = 'https://github.com/neovim/nvim-lspconfig' },
|
||||||
{ src = 'https://github.com/echasnovski/mini.nvim' },
|
{ src = 'https://github.com/echasnovski/mini.nvim' },
|
||||||
|
{ src = 'https://github.com/nvim-tree/nvim-tree.lua' },
|
||||||
{ src = 'https://github.com/romus204/tree-sitter-manager.nvim' },
|
{ src = 'https://github.com/romus204/tree-sitter-manager.nvim' },
|
||||||
|
{ src = 'https://github.com/lukas-reineke/indent-blankline.nvim' },
|
||||||
|
{ src = 'https://github.com/slugbyte/lackluster.nvim' },
|
||||||
{ src = 'https://github.com/xiyaowong/transparent.nvim' },
|
{ src = 'https://github.com/xiyaowong/transparent.nvim' },
|
||||||
{ src = "https://github.com/rebelot/kanagawa.nvim" },
|
{ src = 'https://github.com/norcalli/nvim-colorizer.lua' }
|
||||||
{ src = "https://github.com/lukas-reineke/indent-blankline.nvim" },
|
|
||||||
{ src = "https://github.com/nvim-tree/nvim-tree.lua" },
|
|
||||||
})
|
})
|
||||||
|
|
||||||
require("terminal")
|
require("terminal")
|
||||||
|
require("colorizer").setup()
|
||||||
require("mini.completion").setup()
|
require("mini.completion").setup()
|
||||||
require('mini.statusline').setup({})
|
require('mini.statusline').setup({})
|
||||||
require("tree-sitter-manager").setup()
|
require("tree-sitter-manager").setup()
|
||||||
@@ -65,20 +60,7 @@ require("ibl").setup({
|
|||||||
indent = { char = "│" },
|
indent = { char = "│" },
|
||||||
scope = { show_start = false, show_end = false },
|
scope = { show_start = false, show_end = false },
|
||||||
})
|
})
|
||||||
require('kanagawa').setup({
|
vim.cmd.colorscheme('lackluster-night')
|
||||||
commentStyle = { italic = false },
|
|
||||||
keywordStyle = { italic = false },
|
|
||||||
transparent = true,
|
|
||||||
overrides = function(colors)
|
|
||||||
return {
|
|
||||||
SignColumn = { bg = "none" },
|
|
||||||
LineNr = { bg = "none" },
|
|
||||||
CursorLineNr = { bg = "none" },
|
|
||||||
FoldColumn = { bg = "none" },
|
|
||||||
}
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
vim.cmd.colorscheme('kanagawa')
|
|
||||||
vim.api.nvim_set_hl(0, "WinSeparator", { fg = "#54546D" })
|
vim.api.nvim_set_hl(0, "WinSeparator", { fg = "#54546D" })
|
||||||
|
|
||||||
-- Lsp specific, uses nvim-lspconfigs with the below
|
-- Lsp specific, uses nvim-lspconfigs with the below
|
||||||
@@ -96,7 +78,6 @@ map("n", "<C-b>", ":FzfLua grep_curbuf<CR>")
|
|||||||
|
|
||||||
require("nvim-tree").setup()
|
require("nvim-tree").setup()
|
||||||
map("n", "<C-e>", ":NvimTreeToggle<CR>")
|
map("n", "<C-e>", ":NvimTreeToggle<CR>")
|
||||||
|
|
||||||
-- -----------------------------
|
-- -----------------------------
|
||||||
-- @AUTOCMDS
|
-- @AUTOCMDS
|
||||||
-- -----------------------------
|
-- -----------------------------
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ log-level = "warn";
|
|||||||
rules: (
|
rules: (
|
||||||
# No rounded corners on dock and desktop
|
# No rounded corners on dock and desktop
|
||||||
{
|
{
|
||||||
match = "window_type = 'dock' || window_type = 'desktop' || class_g = 'Rofi'";
|
match = "window_type = 'dock' || window_type = 'desktop'";
|
||||||
corner-radius = 0;
|
corner-radius = 0;
|
||||||
},
|
},
|
||||||
# Dim all app windows besides systems stuff
|
# Dim all app windows besides systems stuff
|
||||||
|
|||||||
Reference in New Issue
Block a user