forked from foxora/nix
changed stuff again :3
This commit is contained in:
parent
df0dddd227
commit
fea82f3532
4 changed files with 8 additions and 5 deletions
|
|
@ -85,7 +85,8 @@
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
nerd-fonts.departure-mono # pretty pixel art font i love!! x3
|
nerd-fonts.departure-mono # pretty pixel art font i love!! x3
|
||||||
nerd-fonts.jetbrains-mono
|
noto-fonts-cjk-sans # bitmap font for cjk support :3
|
||||||
|
zpix-pixel-font # bitmap font for cjk support :3
|
||||||
|
|
||||||
# cli / tui tools and commands!
|
# cli / tui tools and commands!
|
||||||
eza # replaces: ls (rust)
|
eza # replaces: ls (rust)
|
||||||
|
|
@ -111,6 +112,7 @@
|
||||||
eva # calculator repl
|
eva # calculator repl
|
||||||
silicon # makes pretty images of code :3
|
silicon # makes pretty images of code :3
|
||||||
wormhole-rs # send people stuff!! :3
|
wormhole-rs # send people stuff!! :3
|
||||||
|
croc # other way to send people stuff!! :3
|
||||||
|
|
||||||
# cli fun
|
# cli fun
|
||||||
pokeget-rs # prints a random pokemon to the terminal :3
|
pokeget-rs # prints a random pokemon to the terminal :3
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
* {
|
* {
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
font-family: 'DepartureMono Nerd Font';
|
font-family: "DepartureMono Nerd Font", "Unifont";
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
min-height: 10px;
|
min-height: 10px;
|
||||||
|
|
@ -49,6 +49,7 @@ tooltip label {
|
||||||
padding: 4px 16px;
|
padding: 4px 16px;
|
||||||
border-radius: 32px;
|
border-radius: 32px;
|
||||||
border: 1px solid @color01;
|
border: 1px solid @color01;
|
||||||
|
min-height: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
pattern = { "lua", "nix", "gleam", "css" },
|
pattern = { "lua", "nix", "gleam", "css", "json" },
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.opt_local.shiftwidth = 2
|
vim.opt_local.shiftwidth = 2
|
||||||
vim.opt_local.tabstop = 2
|
vim.opt_local.tabstop = 2
|
||||||
|
|
@ -20,7 +20,7 @@ vim.api.nvim_create_autocmd("User", {
|
||||||
pattern = "TelescopePreviewerLoaded",
|
pattern = "TelescopePreviewerLoaded",
|
||||||
callback = function(args)
|
callback = function(args)
|
||||||
local ft = args.data.filetype
|
local ft = args.data.filetype
|
||||||
if vim.tbl_contains({ "lua", "nix", "gleam", "css" }, ft) then
|
if vim.tbl_contains({ "lua", "nix", "gleam", "css", "json" }, ft) then
|
||||||
vim.bo.shiftwidth = 2
|
vim.bo.shiftwidth = 2
|
||||||
vim.bo.tabstop = 2
|
vim.bo.tabstop = 2
|
||||||
vim.bo.expandtab = true
|
vim.bo.expandtab = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# a submap for emulating keys/buttons/functions on the keyboard or mouse
|
# a submap for emulating keys/buttons/functions on the keyboard or mouse
|
||||||
|
|
||||||
bind = $mod+shift, c, submap, cursor
|
bind = $mod, a, submap, cursor
|
||||||
submap = cursor
|
submap = cursor
|
||||||
|
|
||||||
# exit submap
|
# exit submap
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue