Skip to content

Commit

Permalink
Move nvim into .config
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Ford committed Apr 17, 2024
1 parent d906ee1 commit 3931063
Show file tree
Hide file tree
Showing 29 changed files with 37 additions and 49 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 7 additions & 5 deletions nvim/lazyvim.json → .config/nvim/lazyvim.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
{
"extras": [
"lazyvim.plugins.extras.dap.core",
"lazyvim.plugins.extras.test.core",
"lazyvim.plugins.extras.coding.codeium",
"lazyvim.plugins.extras.coding.copilot",
"lazyvim.plugins.extras.coding.yanky",
"lazyvim.plugins.extras.dap.core",
"lazyvim.plugins.extras.dap.nlua",
"lazyvim.plugins.extras.editor.leap",
"lazyvim.plugins.extras.editor.mini-files",
"lazyvim.plugins.extras.editor.trouble-v3",
"lazyvim.plugins.extras.formatting.prettier",
"lazyvim.plugins.extras.lang.clangd",
"lazyvim.plugins.extras.lang.cmake",
"lazyvim.plugins.extras.lang.docker",
"lazyvim.plugins.extras.lang.elixir",
"lazyvim.plugins.extras.lang.helm",
"lazyvim.plugins.extras.lang.json",
"lazyvim.plugins.extras.lang.markdown",
"lazyvim.plugins.extras.lang.python",
"lazyvim.plugins.extras.lang.rust",
"lazyvim.plugins.extras.lang.tailwind",
"lazyvim.plugins.extras.lang.typescript",
"lazyvim.plugins.extras.lang.yaml",
"lazyvim.plugins.extras.test.core",
"lazyvim.plugins.extras.ui.edgy",
"lazyvim.plugins.extras.ui.mini-animate",
"lazyvim.plugins.extras.util.mini-hipatterns",
"lazyvim.plugins.extras.util.project",
"lazyvim.plugins.extras.vscode",
"lazyvim.plugins.extras.editor.outline"
"lazyvim.plugins.extras.util.project"
],
"news": {
"NEWS.md": "3314"
Expand Down
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.
51 changes: 9 additions & 42 deletions nvim/lua/plugins/drop.lua → .config/nvim/lua/plugins/drop.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,50 +4,17 @@ local function pickTheme()
if string.match(filepath, "work") then
return {
symbols = {
"☀️",
"",
"🔌",
"🔋",
"💡",
"🌞",
"🌅",
"🌄",
"♻️",
"🍃",
"🌍",
"🌎",
"🌏",
"🌱",
"🌲",
"🌳",
"🌴",
"🏞️",
"💧",
"🚰",
"🔒",
"🔑",
"🛡️",
"☁️",
"🌐",
},
colors = {
"#00f0ff",
"#7DF5FD",
"#D4F8FC",
"#FF8B20",
"#FAF8F4",
"#839FFE",
"#162241",
"#F8D520",
"#F8E78E",
"#F9F4DA",
"#4BA385",
"#FAF8F4",
"#E1AEE7",
"#F2E3F5",
"#EAC895",
"#EB5757",
"#F2A8A9",
"#F7E2E2",
"#003F86",
"#0056B8",
"#4B87CC",
"#FF7241",
"#fcb040",
"#348bf7",
"#ffffff",
"#858e98",
},
}
end
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
return {
-- Hack to encoding error with clangd.
-- Hack to suppress encoding error with clangd.
{
"neovim/nvim-lspconfig",
opts = {
Expand Down
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.
19 changes: 19 additions & 0 deletions .wezterm.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
local wezterm = require("wezterm")
local config = wezterm.config_builder()

config.color_scheme = "GruvboxDarkHard"
config.font = wezterm.font("Cartograph CF")
config.font_size = 16.0
config.bold_brightens_ansi_colors = "BrightAndBold"
config.default_cursor_style = "BlinkingBlock"
config.enable_scroll_bar = true
config.exit_behavior_messaging = "Verbose"
config.max_fps = 144
config.scrollback_lines = 100000
config.show_tab_index_in_tab_bar = false
config.front_end = "WebGpu"
config.webgpu_power_preference = "HighPerformance"
config.window_close_confirmation = "NeverPrompt"
config.window_decorations = "INTEGRATED_BUTTONS|RESIZE"

return config
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ln -s "$DOTFILES_DIR/.config/gh" "$HOME/.config/gh"
ln -s "$DOTFILES_DIR/.config/github-copilot" "$HOME/.config/github-copilot"
ln -s "$DOTFILES_DIR/.config/htop" "$HOME/.config/htop"
ln -s "$DOTFILES_DIR/.config/lazygit" "$HOME/.config/lazygit"
ln -s "$DOTFILES_DIR/nvim" "$HOME/.config/nvim"
ln -s "$DOTFILES_DIR/.config/nvim" "$HOME/.config/nvim"
ln -s "$DOTFILES_DIR/.gitconfig" "$HOME/.gitconfig"
ln -s "$DOTFILES_DIR/.p10k.zsh" "$HOME/.p10k.zsh"
ln -s "$DOTFILES_DIR/.profile" "$HOME/.profile"
Expand Down

0 comments on commit 3931063

Please sign in to comment.