cool
This commit is contained in:
parent
f827a5e420
commit
69b19c366d
|
@ -18,8 +18,8 @@ require("clint") -- loads lua/clint/init.lua
|
||||||
require('dap-python').setup('~/.virtualenvs/debugpy/bin/python')
|
require('dap-python').setup('~/.virtualenvs/debugpy/bin/python')
|
||||||
|
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
vim.cmd.colorscheme 'ayu'
|
vim.cmd.colorscheme 'kanagawa'
|
||||||
vim.cmd("highlight Normal guibg=none")
|
-- vim.cmd("highlight Normal guibg=none")
|
||||||
vim.cmd("highlight NonText guibg=none")
|
-- vim.cmd("highlight NonText guibg=none")
|
||||||
vim.cmd("highlight Normal ctermbg=none")
|
-- vim.cmd("highlight Normal ctermbg=none")
|
||||||
vim.cmd("highlight NonText ctermbg=none")
|
-- vim.cmd("highlight NonText ctermbg=none")
|
||||||
|
|
|
@ -158,7 +158,8 @@ return {
|
||||||
{ "lukas-reineke/indent-blankline.nvim",
|
{ "lukas-reineke/indent-blankline.nvim",
|
||||||
config =
|
config =
|
||||||
{
|
{
|
||||||
char = "",
|
show_end_of_line = true,
|
||||||
|
space_char_blankline = " ",
|
||||||
show_current_context = true,
|
show_current_context = true,
|
||||||
show_current_context_start = true,
|
show_current_context_start = true,
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,13 @@ def add(x, y):
|
||||||
|
|
||||||
print(f"{x} + {y} = {x+y}\n")
|
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")
|
print(f"{x} - {y} = {x-y}\n")
|
||||||
|
return x + y
|
||||||
|
|
||||||
# open terminal 100: f1
|
# open terminal 100: f1
|
||||||
|
subtract(1, 2)
|
||||||
|
|
|
@ -49,7 +49,7 @@ _comp_options+=(globdots)
|
||||||
zstyle ':completion:*' menu select
|
zstyle ':completion:*' menu select
|
||||||
|
|
||||||
# start power theme
|
# 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.
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
|
Loading…
Reference in New Issue