Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
af4c46f
Add relative line numbers and some plugins
albert-yu Oct 2, 2024
faf8fb1
Install zig
albert-yu Oct 3, 2024
ffac205
Enable formatter for js/ts
albert-yu Oct 5, 2024
4cabb9f
Use tokyo night storm
albert-yu Oct 5, 2024
9e9fa42
Revert "Use tokyo night storm"
albert-yu Oct 5, 2024
fd47d2f
Format on jsx/tsx files
albert-yu Oct 10, 2024
4b6b216
Add github/copilot.vim
albert-yu Nov 19, 2024
4eddd08
Use supermaven, not copilot
albert-yu Dec 3, 2024
76d5017
Revert "Use supermaven, not copilot"
albert-yu Mar 19, 2025
517a648
Merge branch 'master' of https://github.com/nvim-lua/kickstart.nvim i…
albert-yu Apr 5, 2025
9b20aa6
Merge branch 'nvim-lua-master'
albert-yu Apr 5, 2025
488aac1
Add avant.nvim plugin
albert-yu Apr 9, 2025
3da03f2
Comment out max tokens
albert-yu Apr 9, 2025
cad3b91
Remove auto suggestions provider
albert-yu Apr 9, 2025
9229ef3
Use nightfox theme
albert-yu Apr 10, 2025
698b646
Put max tokens back in
albert-yu Apr 13, 2025
77ea3d8
Reapply "Use supermaven, not copilot"
albert-yu May 13, 2025
a3c0931
Rename file to avante.nvim
albert-yu Jun 3, 2025
69f9e3d
Update avante config
albert-yu Jun 27, 2025
19fc4e4
Add git-blame
albert-yu Aug 19, 2025
b608789
Merge pull request #2 from albert-yu/install-git-blame
albert-yu Aug 21, 2025
313b1ba
Remove avante
albert-yu Aug 27, 2025
d00a1d3
Merge pull request #3 from albert-yu/rm-avante
albert-yu Aug 27, 2025
d4aa3e9
Add kanagawa theme
albert-yu Aug 29, 2025
48f1fca
Enable bytecode compilation for kanagawa
albert-yu Aug 29, 2025
373f27c
Merge pull request #4 from albert-yu/add-kanagawa-theme
albert-yu Aug 29, 2025
d0d61e8
Make bg transparent
albert-yu Oct 15, 2025
52f292a
Revert "Make bg transparent"
albert-yu Oct 15, 2025
807bf31
Add alabaster theme
albert-yu Oct 16, 2025
533f3b2
Merge pull request #6 from albert-yu/alabaster-theme
albert-yu Oct 18, 2025
1f11fa5
Remove git-blame and supermaven
albert-yu Oct 24, 2025
330b8f4
Merge pull request #7 from albert-yu/cleanup
albert-yu Oct 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 33 additions & 10 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ vim.g.mapleader = ' '
vim.g.maplocalleader = ' '

-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false
vim.g.have_nerd_font = true

-- [[ Setting options ]]
-- See `:help vim.opt`
Expand All @@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
vim.opt.number = true
-- You can also add relative line numbers, to help with jumping.
-- Experiment for yourself to see if you like it!
-- vim.opt.relativenumber = true
vim.opt.relativenumber = true

-- Enable mouse mode, can be useful for resizing splits for example!
vim.opt.mouse = 'a'
Expand Down Expand Up @@ -770,7 +770,10 @@ require('lazy').setup({
-- python = { "isort", "black" },
--
-- You can use 'stop_after_first' to run the first available formatter from the list
-- javascript = { "prettierd", "prettier", stop_after_first = true },
javascript = { 'prettier', 'prettierd', stop_after_first = true },
javascriptreact = { 'prettier', 'prettierd', stop_after_first = true },
typescript = { 'prettier', 'prettierd', stop_after_first = true },
typescriptreact = { 'prettier', 'prettierd', stop_after_first = true },
},
},
},
Expand Down Expand Up @@ -911,7 +914,27 @@ require('lazy').setup({
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night'
-- vim.cmd.colorscheme 'tokyonight-storm'
end,
},
{
'EdenEast/nightfox.nvim',
priority = 1000,
config = function() end,
},
{
'rebelot/kanagawa.nvim',
priority = 1000,
config = function()
require('kanagawa').setup {
compile = true,
}
end,
},
{
'p00f/alabaster.nvim',
config = function()
vim.cmd.colorscheme 'alabaster'
end,
},

Expand Down Expand Up @@ -990,18 +1013,18 @@ require('lazy').setup({
-- Here are some example plugins that I've included in the Kickstart repository.
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.indent_line',
-- require 'kickstart.plugins.lint',
-- require 'kickstart.plugins.autopairs',
-- require 'kickstart.plugins.neo-tree',
require 'kickstart.plugins.debug',
require 'kickstart.plugins.indent_line',
require 'kickstart.plugins.lint',
require 'kickstart.plugins.autopairs',
require 'kickstart.plugins.neo-tree',
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps

-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config.
--
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- { import = 'custom.plugins' },
{ import = 'custom.plugins' },
--
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
-- Or use telescope!
Expand Down
3 changes: 3 additions & 0 deletions lua/custom/plugins/zig.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
return {
'ziglang/zig.vim',
}