Move nvim config to shared

This commit is contained in:
2024-06-08 14:14:26 -05:00
parent 4a914da23e
commit 0a8ded6db3
18 changed files with 278 additions and 24 deletions

View File

@@ -6,12 +6,7 @@ local plugins = {
'kylechui/nvim-surround',
{
'ibhagwan/fzf-lua',
config = function()
require('fzf-lua').setup({'skim'})
end
},
'neovim/nvim-lspconfig',
'hrsh7th/nvim-cmp',
@@ -20,15 +15,15 @@ local plugins = {
'L3MON4D3/LuaSnip',
{
'windwp/nvim-autopairs',
event = 'InsertEnter',
opts = {},
'windwp/nvim-autopairs',
event = 'InsertEnter',
opts = {},
},
{
'kaarmu/typst.vim',
ft = 'typst',
lazy = false,
'kaarmu/typst.vim',
ft = 'typst',
lazy = false,
},
'jalvesaq/Nvim-R',

View File

@@ -36,4 +36,3 @@ vim.opt.completeopt=menuone,noselect
vim.opt.undofile=true
vim.g['loaded_perl_provider']=0
vim.g['python3_host_prog']='/usr/bin/python3'

View File

@@ -15,7 +15,7 @@
homeDirectory = "/home/eesim";
};
home.file.".config/nvim".source = ./dotfiles/nvim;
home.file.".config/nvim".source = ../shared/dotfiles/nvim;
home.file.".config/waybar".source = ./dotfiles/waybar;
home.file.".config/fish/config.fish".source = ./dotfiles/fish/config.fish;
home.file.".config/alacritty/alacritty.toml".source = ./dotfiles/alacritty/alacritty.toml;