-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea9eaf4
commit 5f86417
Showing
18 changed files
with
88 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
require("catppuccin").setup({ | ||
flavour = "mocha", -- latte, frappe, macchiato, mocha | ||
background = { -- :h background | ||
light = "latte", | ||
dark = "mocha", | ||
}, | ||
transparent_background = false, -- disables setting the background color. | ||
show_end_of_buffer = false, -- shows the '~' characters after the end of buffers | ||
term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`) | ||
dim_inactive = { | ||
enabled = false, -- dims the background color of inactive window | ||
shade = "dark", | ||
percentage = 0.15, -- percentage of the shade to apply to the inactive window | ||
}, | ||
no_italic = false, -- Force no italic | ||
no_bold = false, -- Force no bold | ||
no_underline = false, -- Force no underline | ||
styles = { -- Handles the styles of general hi groups (see `:h highlight-args`): | ||
comments = { "italic" }, -- Change the style of comments | ||
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) | ||
}, | ||
}) | ||
|
||
-- setup must be called before loading | ||
vim.cmd.colorscheme "catppuccin" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
require("options") | ||
require("mappings") | ||
require("plugins") | ||
require("RemoteRabbit") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
require("RemoteRabbit.mappings") | ||
require("RemoteRabbit.options") | ||
require("RemoteRabbit.plugins") | ||
|
||
local augroup = vim.api.nvim_create_augroup | ||
local RemoteRabbitGroup = augroup('RemoteRabbit', {}) | ||
|
||
local autocmd = vim.api.nvim_create_autocmd | ||
local yank_group = augroup('HighlightYank', {}) | ||
|
||
function R(name) | ||
require("plenary.reload").reload_module(name) | ||
end | ||
|
||
autocmd('TextYankPost', { | ||
group = yank_group, | ||
pattern = '*', | ||
callback = function() | ||
vim.highlight.on_yank({ | ||
higroup = 'IncSearch', | ||
timeout = 40, | ||
}) | ||
end, | ||
}) | ||
|
||
autocmd({"BufWritePre"}, { | ||
group = RemoteRabbitGroup, | ||
pattern = "*", | ||
command = [[%s/\s\+$//e]], | ||
}) | ||
|
||
vim.g.netrw_browse_split = 0 | ||
vim.g.netrw_banner = 0 | ||
vim.g.netrw_winsize = 25 |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.