This commit is contained in:
c 2023-04-15 00:42:53 -05:00
parent f827a5e420
commit 69b19c366d
4 changed files with 15 additions and 9 deletions

View File

@ -18,8 +18,8 @@ require("clint") -- loads lua/clint/init.lua
require('dap-python').setup('~/.virtualenvs/debugpy/bin/python')
vim.opt.termguicolors = true
vim.cmd.colorscheme 'ayu'
vim.cmd("highlight Normal guibg=none")
vim.cmd("highlight NonText guibg=none")
vim.cmd("highlight Normal ctermbg=none")
vim.cmd("highlight NonText ctermbg=none")
vim.cmd.colorscheme 'kanagawa'
-- vim.cmd("highlight Normal guibg=none")
-- vim.cmd("highlight NonText guibg=none")
-- vim.cmd("highlight Normal ctermbg=none")
-- vim.cmd("highlight NonText ctermbg=none")

View File

@ -158,7 +158,8 @@ return {
{ "lukas-reineke/indent-blankline.nvim",
config =
{
char = "",
show_end_of_line = true,
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
}

View File

@ -11,8 +11,13 @@ def add(x, y):
print(f"{x} + {y} = {x+y}\n")
def subtract(x, y):
def subtract(x, y) -> int:
"""
Very cool function that will subtract two ints
return: int
"""
print(f"{x} - {y} = {x-y}\n")
return x + y
# open terminal 100: f1
subtract(1, 2)

View File

@ -49,7 +49,7 @@ _comp_options+=(globdots)
zstyle ':completion:*' menu select
# start power theme
source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
source ~/powerlevel10k/powerlevel10k.zsh-theme
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh