mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-24 13:45:29 -08:00
Compare commits
No commits in common. "525c4ca77f39202d7218023841e9ac4d57560abb" and "70ebffe22124f302b62b80b27f6e7f2f359b9de2" have entirely different histories.
525c4ca77f
...
70ebffe221
3 changed files with 0 additions and 333 deletions
|
@ -1,49 +0,0 @@
|
||||||
-- Put in $HOME directory
|
|
||||||
|
|
||||||
-- A normal config version of my nix config for wezterm
|
|
||||||
local wezterm = require 'wezterm'
|
|
||||||
local config = {}
|
|
||||||
|
|
||||||
-- Requires powershell 7, and dejavu sans mono
|
|
||||||
-- for starship prompt, see: https://starship.rs/guide/#%F0%9F%9A%80-installation and powershell installation
|
|
||||||
config.default_prog = { "C:\\Program Files\\PowerShell\\7\\pwsh.exe" }
|
|
||||||
|
|
||||||
config.window_background_opacity = 0.8
|
|
||||||
config.font = wezterm.font_with_fallback {
|
|
||||||
'DejaVu Sans Mono',
|
|
||||||
'DejaVuSansMono-Nerd-Font',
|
|
||||||
}
|
|
||||||
config.font_size = 11.0
|
|
||||||
config.hide_tab_bar_if_only_one_tab = true
|
|
||||||
|
|
||||||
--config.color_scheme = 'SeeThroughBlack'
|
|
||||||
config.color_scheme = 'Catppuccin Latte'
|
|
||||||
|
|
||||||
--config.window_background_opacity = 0
|
|
||||||
--config.win32_system_backdrop = "Acrylic"
|
|
||||||
|
|
||||||
|
|
||||||
config.color_schemes = {
|
|
||||||
['SeeThroughBlack'] = {
|
|
||||||
ansi = {
|
|
||||||
"#000000", "#E44B4B", "#00cd00", "#cdcd00",
|
|
||||||
"#0091f1", "#cd00cd", "#00cdcd", "#faebd7"
|
|
||||||
},
|
|
||||||
brights = {
|
|
||||||
"#404040", "#ff4a4a", "#04b004", "#ffff7f",
|
|
||||||
"#48b3fb", "#ff00ff", "#73ffe6", "#ffffff"
|
|
||||||
},
|
|
||||||
-- foreground = "#F4EFD6",
|
|
||||||
-- background = "#202020",
|
|
||||||
foreground = "black",
|
|
||||||
background = "#000000",
|
|
||||||
|
|
||||||
cursor_bg = "#1C6CD4",
|
|
||||||
cursor_border = "1C6CE4" ,
|
|
||||||
|
|
||||||
selection_bg = "#8ED1FC",
|
|
||||||
selection_fg = "black",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return config
|
|
|
@ -1,132 +0,0 @@
|
||||||
-- Put in ~/AppData/Local/nvim
|
|
||||||
|
|
||||||
vim.opt.signcolumn = 'yes';
|
|
||||||
vim.opt.scrolloff = 8;
|
|
||||||
vim.opt.autoindent = true;
|
|
||||||
vim.opt.expandtab = true;
|
|
||||||
vim.opt.foldlevel = 20;
|
|
||||||
vim.opt.number = true;
|
|
||||||
vim.opt.shiftwidth = 4;
|
|
||||||
vim.opt.tabstop = 4;
|
|
||||||
|
|
||||||
vim.g.mapleader = ' ';
|
|
||||||
|
|
||||||
vim.keymap.set("v", "J", ":m '>+1<CR>gv=gv");
|
|
||||||
vim.keymap.set("v", "K", ":m '<-2<CR>gv=gv");
|
|
||||||
|
|
||||||
vim.keymap.set("n", "<C-d>", "<C-d>zz");
|
|
||||||
vim.keymap.set("n", "<C-u>", "<C-u>zz");
|
|
||||||
|
|
||||||
vim.keymap.set("n", "n", "nzzzv");
|
|
||||||
vim.keymap.set("n", "N", "Nzzzv");
|
|
||||||
|
|
||||||
vim.keymap.set("x", "<leader>p", "\"_dP");
|
|
||||||
vim.keymap.set("n", "<leader>y", "\"+y");
|
|
||||||
vim.keymap.set("v", "<leader>y", "\"+y");
|
|
||||||
vim.keymap.set("n", "<leader>Y", "\"+Y");
|
|
||||||
|
|
||||||
vim.keymap.set("n", "<leader>d", "\"_d");
|
|
||||||
vim.keymap.set("v", "<leader>d", "\"_d");
|
|
||||||
|
|
||||||
|
|
||||||
require("monokai-pro").setup({
|
|
||||||
transparent_background = false,
|
|
||||||
terminal_colors = true,
|
|
||||||
devicons = true, -- highlight the icons of `nvim-web-devicons`
|
|
||||||
styles = {
|
|
||||||
comment = { italic = true },
|
|
||||||
keyword = { italic = true }, -- any other keyword
|
|
||||||
type = { italic = true }, -- (preferred) int, long, char, etc
|
|
||||||
storageclass = { italic = true }, -- static, register, volatile, etc
|
|
||||||
structure = { italic = true }, -- struct, union, enum, etc
|
|
||||||
parameter = { italic = true }, -- parameter pass in function
|
|
||||||
annotation = { italic = true },
|
|
||||||
tag_attribute = { italic = true }, -- attribute of tag in reactjs
|
|
||||||
},
|
|
||||||
filter = "pro", -- classic | octagon | pro | machine | ristretto | spectrum
|
|
||||||
-- Enable this will disable filter option
|
|
||||||
day_night = {
|
|
||||||
enable = false, -- turn off by default
|
|
||||||
day_filter = "pro", -- classic | octagon | pro | machine | ristretto | spectrum
|
|
||||||
night_filter = "spectrum", -- classic | octagon | pro | machine | ristretto | spectrum
|
|
||||||
},
|
|
||||||
inc_search = "background", -- underline | background
|
|
||||||
background_clear = {
|
|
||||||
-- "float_win",
|
|
||||||
"toggleterm",
|
|
||||||
"telescope",
|
|
||||||
-- "which-key",
|
|
||||||
"renamer",
|
|
||||||
"notify",
|
|
||||||
-- "nvim-tree",
|
|
||||||
-- "neo-tree",
|
|
||||||
-- "bufferline", -- better used if background of `neo-tree` or `nvim-tree` is cleared
|
|
||||||
},-- "float_win", "toggleterm", "telescope", "which-key", "renamer", "neo-tree", "nvim-tree", "bufferline"
|
|
||||||
plugins = {
|
|
||||||
bufferline = {
|
|
||||||
underline_selected = false,
|
|
||||||
underline_visible = false,
|
|
||||||
},
|
|
||||||
indent_blankline = {
|
|
||||||
context_highlight = "default", -- default | pro
|
|
||||||
context_start_underline = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
---@param c Colorscheme
|
|
||||||
override = function(c) end,
|
|
||||||
})
|
|
||||||
-- lua
|
|
||||||
vim.cmd([[colorscheme monokai-pro]])
|
|
||||||
|
|
||||||
|
|
||||||
return require('packer').startup(function(use)
|
|
||||||
-- Packer can manage itself
|
|
||||||
use 'wbthomason/packer.nvim'
|
|
||||||
|
|
||||||
use {
|
|
||||||
"loctvl842/monokai-pro.nvim",
|
|
||||||
config = function()
|
|
||||||
require("monokai-pro").setup()
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
use {
|
|
||||||
'nvim-telescope/telescope.nvim', tag = '0.1.0',
|
|
||||||
-- or , branch = '0.1.x',
|
|
||||||
requires = { {'nvim-lua/plenary.nvim'} }
|
|
||||||
}
|
|
||||||
|
|
||||||
use {
|
|
||||||
'nvim-treesitter/nvim-treesitter',
|
|
||||||
run = function()
|
|
||||||
local ts_update = require('nvim-treesitter.install').update({ with_sync = true })
|
|
||||||
ts_update()
|
|
||||||
end,}
|
|
||||||
use("nvim-treesitter/playground")
|
|
||||||
use("nvim-treesitter/nvim-treesitter-context");
|
|
||||||
|
|
||||||
use {
|
|
||||||
'VonHeikemen/lsp-zero.nvim',
|
|
||||||
branch = 'v1.x',
|
|
||||||
requires = {
|
|
||||||
-- LSP Support
|
|
||||||
{'neovim/nvim-lspconfig'},
|
|
||||||
{'williamboman/mason.nvim'},
|
|
||||||
{'williamboman/mason-lspconfig.nvim'},
|
|
||||||
|
|
||||||
-- Autocompletion
|
|
||||||
{'hrsh7th/nvim-cmp'},
|
|
||||||
{'hrsh7th/cmp-buffer'},
|
|
||||||
{'hrsh7th/cmp-path'},
|
|
||||||
{'saadparwaiz1/cmp_luasnip'},
|
|
||||||
{'hrsh7th/cmp-nvim-lsp'},
|
|
||||||
{'hrsh7th/cmp-nvim-lua'},
|
|
||||||
|
|
||||||
-- Snippets
|
|
||||||
{'L3MON4D3/LuaSnip'},
|
|
||||||
{'rafamadriz/friendly-snippets'},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
end)
|
|
||||||
|
|
|
@ -1,152 +0,0 @@
|
||||||
# Put in $HOME\.config
|
|
||||||
|
|
||||||
format = """
|
|
||||||
[█](#008edb)\
|
|
||||||
$os\
|
|
||||||
$username\
|
|
||||||
[](bg:#DA627D fg:#008edb)\
|
|
||||||
$directory\
|
|
||||||
[](fg:#DA627D bg:#FCA17D)\
|
|
||||||
$git_branch\
|
|
||||||
$git_status\
|
|
||||||
[](fg:#FCA17D bg:#86BBD8)\
|
|
||||||
$c\
|
|
||||||
$elixir\
|
|
||||||
$elm\
|
|
||||||
$golang\
|
|
||||||
$gradle\
|
|
||||||
$haskell\
|
|
||||||
$java\
|
|
||||||
$julia\
|
|
||||||
$nodejs\
|
|
||||||
$nim\
|
|
||||||
$rust\
|
|
||||||
$scala\
|
|
||||||
[](fg:#86BBD8 bg:#06969A)\
|
|
||||||
$docker_context\
|
|
||||||
[](fg:#06969A bg:#33658A)\
|
|
||||||
$time\
|
|
||||||
[ ](fg:#33658A)\
|
|
||||||
$line_break\
|
|
||||||
$character"""
|
|
||||||
|
|
||||||
# Disable the blank line at the start of the prompt
|
|
||||||
# add_newline = false
|
|
||||||
|
|
||||||
# You can also replace your username with a neat symbol like or disable this
|
|
||||||
# and use the os module below
|
|
||||||
[username]
|
|
||||||
show_always = true
|
|
||||||
style_user = "fg:#ffffff bg:#008edb"
|
|
||||||
style_root = "fg:#ffffff bg:#008edb"
|
|
||||||
format = '[$user ]($style)'
|
|
||||||
disabled = false
|
|
||||||
|
|
||||||
[character]
|
|
||||||
success_symbol = "[❯](purple)"
|
|
||||||
error_symbol = "[❯](red)"
|
|
||||||
vimcmd_symbol = "[❮](green)"
|
|
||||||
|
|
||||||
# An alternative to the username module which displays a symbol that
|
|
||||||
# represents the current operating system
|
|
||||||
[os]
|
|
||||||
style = "fg:#ffffff bg:#008edb"
|
|
||||||
disabled = true # Disabled by default
|
|
||||||
|
|
||||||
[directory]
|
|
||||||
style = "bg:#DA627D"
|
|
||||||
format = "[ $path ]($style)"
|
|
||||||
truncation_length = 3
|
|
||||||
truncation_symbol = "…/"
|
|
||||||
|
|
||||||
# Here is how you can shorten some long paths by text replacement
|
|
||||||
# similar to mapped_locations in Oh My Posh:
|
|
||||||
[directory.substitutions]
|
|
||||||
"Documents" = " "
|
|
||||||
"Downloads" = " "
|
|
||||||
"Music" = " "
|
|
||||||
"Pictures" = " "
|
|
||||||
# Keep in mind that the order matters. For example:
|
|
||||||
# "Important Documents" = " "
|
|
||||||
# will not be replaced, because "Documents" was already substituted before.
|
|
||||||
# So either put "Important Documents" before "Documents" or use the substituted version:
|
|
||||||
# "Important " = " "
|
|
||||||
|
|
||||||
[c]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[docker_context]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#06969A"
|
|
||||||
format = '[ $symbol $context ]($style) $path'
|
|
||||||
|
|
||||||
[elixir]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[elm]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[git_branch]
|
|
||||||
symbol = ""
|
|
||||||
style = "bg:#FCA17D"
|
|
||||||
format = '[ $symbol $branch ]($style)'
|
|
||||||
|
|
||||||
[git_status]
|
|
||||||
style = "bg:#FCA17D"
|
|
||||||
format = '[$all_status$ahead_behind ]($style)'
|
|
||||||
|
|
||||||
[golang]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[gradle]
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[haskell]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[java]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[julia]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[nodejs]
|
|
||||||
symbol = ""
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[nim]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[rust]
|
|
||||||
symbol = ""
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[scala]
|
|
||||||
symbol = " "
|
|
||||||
style = "bg:#86BBD8"
|
|
||||||
format = '[ $symbol ($version) ]($style)'
|
|
||||||
|
|
||||||
[time]
|
|
||||||
disabled = false
|
|
||||||
time_format = "%R" # Hour:Minute Format
|
|
||||||
style = "fg:#ffffff bg:#33658A"
|
|
||||||
format = '[ $time ]($style)'
|
|
Loading…
Reference in a new issue