mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
markdown fix with vim-table-mode
This commit is contained in:
parent
99581ae1ea
commit
8e9d556cfe
12
README.md
12
README.md
@ -8,8 +8,9 @@ configuration may be difficult to translate to a non-Nix system.
|
|||||||
|
|
||||||
## System Features
|
## System Features
|
||||||
|
|
||||||
|
|----------------|-----------------------------------------------------|-----------------------------------------------|
|
||||||
| Feature | Program | Configuration |
|
| Feature | Program | Configuration |
|
||||||
| --- | --- | --- |
|
|----------------|-----------------------------------------------------|-----------------------------------------------|
|
||||||
| OS | [NixOS](https://nixos.org) | [Link](./modules/nixos) |
|
| OS | [NixOS](https://nixos.org) | [Link](./modules/nixos) |
|
||||||
| Display Server | [X11](https://www.x.org/wiki/) | [Link](./modules/nixos/graphical/xorg.nix) |
|
| Display Server | [X11](https://www.x.org/wiki/) | [Link](./modules/nixos/graphical/xorg.nix) |
|
||||||
| Compositor | [Picom](https://github.com/yshui/picom) | [Link](./modules/nixos/graphical/picom.nix) |
|
| Compositor | [Picom](https://github.com/yshui/picom) | [Link](./modules/nixos/graphical/picom.nix) |
|
||||||
@ -17,11 +18,13 @@ configuration may be difficult to translate to a non-Nix system.
|
|||||||
| Panel | [Polybar](https://polybar.github.io/) | [Link](./modules/nixos/graphical/polybar.nix) |
|
| Panel | [Polybar](https://polybar.github.io/) | [Link](./modules/nixos/graphical/polybar.nix) |
|
||||||
| Font | [Victor Mono](https://rubjo.github.io/victor-mono/) | [Link](./modules/nixos/graphical/fonts.nix) |
|
| Font | [Victor Mono](https://rubjo.github.io/victor-mono/) | [Link](./modules/nixos/graphical/fonts.nix) |
|
||||||
| Launcher | [Rofi](https://github.com/davatorium/rofi) | [Link](./modules/nixos/graphical/rofi.nix) |
|
| Launcher | [Rofi](https://github.com/davatorium/rofi) | [Link](./modules/nixos/graphical/rofi.nix) |
|
||||||
|
|----------------|-----------------------------------------------------|-----------------------------------------------|
|
||||||
|
|
||||||
## User Features
|
## User Features
|
||||||
|
|
||||||
|
|--------------|----------------------------------------------------------------------------------|----------------------------------------------------|
|
||||||
| Feature | Program | Configuration |
|
| Feature | Program | Configuration |
|
||||||
| --- | --- | --- |
|
|--------------|----------------------------------------------------------------------------------|----------------------------------------------------|
|
||||||
| Dotfiles | [Home-Manager](https://github.com/nix-community/home-manager) | [Link](./modules/common) |
|
| Dotfiles | [Home-Manager](https://github.com/nix-community/home-manager) | [Link](./modules/common) |
|
||||||
| Terminal | [Kitty](https://sw.kovidgoyal.net/kitty/) | [Link](./modules/common/applications/kitty.nix) |
|
| Terminal | [Kitty](https://sw.kovidgoyal.net/kitty/) | [Link](./modules/common/applications/kitty.nix) |
|
||||||
| Shell | [Fish](https://fishshell.com/) | [Link](./modules/common/shell/fish) |
|
| Shell | [Fish](https://fishshell.com/) | [Link](./modules/common/shell/fish) |
|
||||||
@ -34,12 +37,15 @@ configuration may be difficult to translate to a non-Nix system.
|
|||||||
| File Manager | [Nautilus](https://wiki.gnome.org/action/show/Apps/Files) | [Link](./modules/common/applications/nautilus.nix) |
|
| File Manager | [Nautilus](https://wiki.gnome.org/action/show/Apps/Files) | [Link](./modules/common/applications/nautilus.nix) |
|
||||||
| PDF Reader | [Zathura](https://pwmt.org/projects/zathura/) | [Link](./modules/common/applications/media.nix) |
|
| PDF Reader | [Zathura](https://pwmt.org/projects/zathura/) | [Link](./modules/common/applications/media.nix) |
|
||||||
| Video Player | [mpv](https://mpv.io/) | [Link](./modules/common/applications/media.nix) |
|
| Video Player | [mpv](https://mpv.io/) | [Link](./modules/common/applications/media.nix) |
|
||||||
|
|--------------|----------------------------------------------------------------------------------|----------------------------------------------------|
|
||||||
|
|
||||||
## macOS Features
|
## macOS Features
|
||||||
|
|
||||||
|
|----------|---------------------------------------------|--------------------------------------|
|
||||||
| Feature | Program | Configuration |
|
| Feature | Program | Configuration |
|
||||||
| --- | --- | --- |
|
|----------|---------------------------------------------|--------------------------------------|
|
||||||
| Keybinds | [Hammerspoon](https://www.hammerspoon.org/) | [Link](./modules/darwin/hammerspoon) |
|
| Keybinds | [Hammerspoon](https://www.hammerspoon.org/) | [Link](./modules/darwin/hammerspoon) |
|
||||||
|
|----------|---------------------------------------------|--------------------------------------|
|
||||||
|
|
||||||
# Diagram
|
# Diagram
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
pkgs.vimPlugins.conform-nvim
|
pkgs.vimPlugins.conform-nvim
|
||||||
pkgs.vimPlugins.fidget-nvim
|
pkgs.vimPlugins.fidget-nvim
|
||||||
pkgs.vimPlugins.nvim-lint
|
pkgs.vimPlugins.nvim-lint
|
||||||
|
pkgs.vimPlugins.vim-table-mode
|
||||||
];
|
];
|
||||||
|
|
||||||
setup.fidget = { };
|
setup.fidget = { };
|
||||||
|
@ -19,9 +19,7 @@ vim.api.nvim_create_autocmd("FileType", {
|
|||||||
|
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
pattern = "markdown",
|
pattern = "markdown",
|
||||||
callback = function()
|
command = "TableModeEnable",
|
||||||
vim.o.formatoptions = vim.o.formatoptions .. "a"
|
|
||||||
end,
|
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
|
Loading…
Reference in New Issue
Block a user